import { BootStore } from './boot.store'; import { BootValueMetadata } from './interfaces/boot-value-metadata.interface'; export declare class BootOrchestrator { private readonly store; private readonly configValues; constructor(store: BootStore); addBootValues(target: Function, bootValues: BootValueMetadata[]): void; mountBootValues(): Promise; }