import type { PasswordProps as AntdPasswordProps, InputRef } from 'antd/es/input'; export type PasswordProps = AntdPasswordProps & React.RefAttributes & { wrapperClassName?: string; errorMessage?: string; }; export declare const Password: React.FC;