export type ConfigOptions = { cwd?: string; global?: GlobalConfigOpts; shouldThrow?: boolean; }; export type GlobalConfigOpts = { dir?: string; name: string; }; export declare class HarmonyConfig { private raw; constructor(raw: Record); toObject(): Record; toString(): string; static load(fileName: string, opts?: ConfigOptions): HarmonyConfig; static loadGlobal(globalOpts: GlobalConfigOpts, config?: any): HarmonyConfig; }