import React from 'react'; import { GoogleUser } from '../types'; interface AuthFormProps { provider: 'google'; onSuccess?: (user: GoogleUser) => void; onError?: (error: Error) => void; buttonLabel?: string; buttonClassName?: string; buttonStyle?: React.CSSProperties; } export declare const AuthForm: React.FC; export {};