/** * * */ interface WindowEnv { SUPABASE_URL: string; SUPABASE_ANON_KEY: string; USE_SUPABASE?: string; } declare global { interface Window { ENV: WindowEnv; } } // Ensure this is treated as a module export {};