import NodeContainerPattern from "node-containerpattern"; export default class ConfManager extends NodeContainerPattern { filePath: string; spaces: boolean; shortcuts: Record; constructor(filePath?: string, spaces?: boolean, recursionSeparator?: string); private _loadFromEnvFile; private _loadFromEnv; private _loadFromConsole; clear(): void; clearShortcuts(): this; deleteFile(): Promise; fileExists(): Promise; get(key: string): T; load(options?: boolean | { "loadConsole"?: boolean; "loadEnv"?: boolean; "loadEnvFile"?: string; }): Promise; save(): Promise; shortcut(_key: string, _shortkey: string): this; }