export interface LoginProps { /** Function called when login is attempted */ onLogin: () => void; /** Text to display on the login button */ buttonText?: string; /** Main title text */ title?: string; /** Subtitle text */ subtitle?: string; /** Props to pass to the Logo component */ logoProps?: { width?: number; height?: number; className?: string; src?: string; alt?: string; }; /** URL to redirect to after successful login */ redirectUrl?: string; /** Additional CSS classes */ className?: string; } export declare const Login: React.FC;