import React, { ReactNode } from 'react'; import { InputProps as BaseInputProps } from 'antd/lib/input'; import { Control, ControllerRenderProps } from 'react-hook-form'; export interface PasswordProps extends Pick { className?: string; errorMsg?: string; control: Control; name: string; suffix?: string; prefix?: ReactNode; password?: boolean; render?: (field: ControllerRenderProps) => React.ReactElement; cy?: { input: string; icon: string; error: string; }; } declare const Password: React.FC; export default Password;