1 | export type Json = string | number | boolean | null | {
|
2 | [property: string]: Json;
|
3 | } | Json[];
|
4 | export interface Options {
|
5 | parseEnvValues?: boolean;
|
6 | secretConfig?: string;
|
7 | }
|
8 | export declare function loadConfig(dir?: string, options?: Options): {
|
9 | [property: string]: Json;
|
10 | };
|