import { BootOptions } from './interfaces/boot-options.interface'; export declare class BootFileLoader { private readonly options; private readonly files; constructor(options: BootOptions); load(): any; private checkFileExists; loadFile(path: string): any; private getFilesPath; }