export type Env = { [key: string]: string | undefined; }; export type LoadedEnvFiles = Array<{ path: string; contents: string; env: Env; }>; export declare function loadEnvConfig(): void;