import type { Environment } from './type';
export declare function useEnv(): Environment;
export declare function useEnv<K extends keyof Environment>(key: K): Environment[K];
export declare function resetEnv(): void;
