/// type LoadOptions = { silent?: boolean; force?: boolean; }; export declare function isEnabled(): boolean; export declare function createControlledEnvironment(): { load: (projectRoot: string, options?: LoadOptions) => NodeJS.ProcessEnv; get: (projectRoot: string, options?: LoadOptions) => { env: Record; files: string[]; }; _getForce: (projectRoot: string, options?: LoadOptions) => { env: Record; files: string[]; }; }; export declare function getFiles(mode: string | undefined, { silent }?: Pick): string[]; export {};