1/** 2 * Copyright © 2023 650 Industries. 3 * 4 * This source code is licensed under the MIT license found in the 5 * LICENSE file in the root directory of this source tree. 6 */ 7/// <reference types="node" /> 8export declare function createControlledEnvironment(): { 9 load: (projectRoot: string, { force }?: { 10 force?: boolean | undefined; 11 }) => NodeJS.ProcessEnv; 12 get: (projectRoot: string, { force }?: { 13 force?: boolean | undefined; 14 }) => Record<string, string | undefined>; 15 _getForce: (projectRoot: string) => Record<string, string | undefined>; 16}; 17export declare function getFiles(mode: string | undefined): string[]; 18