/// export interface config { TRANSLATE?: string; IMG?: string; } declare function EnvProvider({ children, config }: { children: any; config?: config; }): JSX.Element; export default EnvProvider; export declare const useEnv: () => config;