import { FC } from 'react'; import { type InputProps } from 'react-login-page'; export interface PasswordProps extends InputProps { label?: React.ReactNode; } export declare const Password: FC;