import { RefAttributes } from 'react'; import { FieldPath, FieldValues } from 'react-hook-form'; import { PasswordElementProps } from './PasswordElement'; export type PasswordRepeatElementProps = FieldPath, TPasswordName extends FieldPath = FieldPath, TConfirmPasswordValue = unknown> = PasswordElementProps & { passwordFieldName: TPasswordName; customInvalidFieldMessage?: string; }; type PasswordRepeatElementComponent = = FieldPath, TPasswordName extends FieldPath = FieldPath>(props: PasswordRepeatElementProps & RefAttributes) => JSX.Element; declare const _default: PasswordRepeatElementComponent; export default _default;