import { IResponseSender } from '../core/response-sending-interfaces/i-response-sender.interface';
import { IBootstrapper } from '../bootstrapping-interfaces/i-bootstrapper.interface';
import { IBootstrapperFactory } from '../bootstrapping-interfaces/i-bootstrapper-factory.interface';
export declare class BaseBootstrapperFactory implements IBootstrapperFactory {
    create(responseSender: IResponseSender): IBootstrapper;
}
