import { FunctionComponent, HTMLProps, ReactNode } from 'react'; export interface LoginFooterProps extends HTMLProps { children?: ReactNode; className?: string; } declare const LoginFooter: FunctionComponent; export default LoginFooter;