/// import { HTMLChakraProps } from '@chakra-ui/react'; export interface LoginFormProps extends HTMLChakraProps<'form'> { onLogin: (email: string, password: string) => void; } export declare const LoginForm: (props: LoginFormProps) => JSX.Element;