export declare function getEnv(forceMode?: "testing" | "production" | "development" | "debug"): {
	TESTING: boolean;
	PRODUCTION: boolean;
	DEBUG: boolean;
	IS_RECORDING: boolean;
	IS_CI: boolean;
	SHOULD_RECORD: boolean;
};
