import { IBoot } from '@nestcloud/common'; import { BootFileLoader } from './boot-file.loader'; import { BootStore } from './boot.store'; import { BootOptions } from './interfaces/boot-options.interface'; export declare class Boot implements IBoot { private readonly options; private readonly fileLoader; private readonly store; constructor(options: BootOptions, fileLoader?: BootFileLoader, store?: BootStore); get(path?: string, defaults?: T): T; }