interface Config { /** If set, this is a function that the user invoked via command line. */ argCommand: Function | null; /** The parsed arguments that the user passed in via command line. */ args: Record; /** Data saved and loaded from the shared file that all RMD environments use. **/ shared: { /** The most recently used environment path. */ env: string | null; /** A list of all known environments. All are confirmed to currently exist. */ knownEnvironments: string[]; }; } export declare const config: Config; export declare const isTest: boolean; export declare const CONF_FOLDER: string; /** * Set the current environment path we're using. Automatically adds it to known environments, and saves. */ export declare function setEnv(envPath: string): void; export {};