import { FunctionComponent, HTMLProps, ReactNode } from 'react'; export interface LoginFooterItemProps extends HTMLProps { children?: ReactNode; className?: string; href?: string; target?: string; } declare const LoginFooterItem: FunctionComponent; export default LoginFooterItem;