import { FC } from "react"; import { XHComponentCommonProps } from "../../types"; export declare type PasswordInputProps = { value: string; length: number; mask?: boolean; onFocus?: (e: any) => void; } & XHComponentCommonProps; declare const PasswordInput: FC; export default PasswordInput;