export type Json = string | number | boolean | null | { [property: string]: Json; } | Json[]; export interface Options { parseEnvValues?: boolean; secretConfig?: string; } export declare function loadConfig(dir?: string, options?: Options): { [property: string]: Json; };