import { ConfigType } from './configSchema';
export default class Config {
    #private;
    constructor();
    init(overrideValues?: Partial<ConfigType>): Promise<void>;
    reset(): void;
    get values(): ConfigType;
    get(key: string): any;
    has(key: string): boolean;
    validate(schema: any): void;
}
//# sourceMappingURL=ConfigConstructor.d.ts.map