/// interface ImportMetaEnv { readonly VITE_GOOGLE_CLIENT_ID: string; } interface ImportMeta { readonly env: ImportMetaEnv; } interface GoogleCredentialResponse { credential: string; } interface Window { google?: { accounts: { id: { initialize(config: { client_id: string; callback: (response: GoogleCredentialResponse) => void; }): void; renderButton( parent: HTMLElement, options: { theme?: 'outline' | 'filled_black' | 'filled_blue'; size?: 'small' | 'medium' | 'large'; text?: 'signin_with' | 'signup_with' | 'continue_with'; shape?: 'rectangular' | 'pill' | 'circle' | 'square'; width?: number; } ): void; prompt(): void; }; }; }; }