import { FunctionComponent, HTMLProps, ReactNode } from 'react'; import { OneOf } from '../../typeUtils'; import { BackgroundImageSrcMap } from '../BackgroundImage'; export const LoginListVariant: { grid: 'grid'; inline: 'inline'; }; export interface LoginPageProps extends HTMLProps { children?: ReactNode; className?: string; brandImgSrc?: string; brandImgAlt?: string; backgroundImgSrc?: string | BackgroundImageSrcMap; backgroundImgAlt?: string; textContent?: string; footerListItems?: ReactNode; footerListVariants?: OneOf; loginTitle: string; signUpForAccountMessage?: ReactNode; forgotCredentials?: ReactNode; socialMediaLoginContent?: ReactNode; } declare const LoginPage: FunctionComponent; export default LoginPage;