import { IBoot } from '@nestcloud/common';
export declare class Boot implements IBoot {
    private readonly env;
    private readonly filename;
    private readonly configPath;
    private readonly fullConfigPath;
    constructor(configPath: string, name?: string | ((env: string) => string));
    getEnv(): string;
    getFilename(): string;
    getConfigPath(): string;
    getFullConfigPath(): string;
    get<T extends any>(path: string, defaults?: T): T;
}
