import React from 'react'; export interface AuthAttempt { username?: string; password?: string; } export interface AuthResult { error?: string; success?: boolean; token?: string; } export interface LoginFormProps { title?: string; onSubmit?: (attempt: AuthAttempt) => AuthResult; } export declare const LoginForm: React.FC;