import { BrakesRegistry } from './brakes.registry';
import { BrakesOptions } from './interfaces/brakes-options.interface';
import { IBrakes } from './interfaces/brakes.interface';
export declare class BrakesFactory {
    private readonly brakesRegistry;
    private readonly options;
    private readonly logger;
    constructor(brakesRegistry: BrakesRegistry, options: BrakesOptions);
    create(name: string): IBrakes;
}
