import { FormRenderProps, VariantProps } from '../../../utils'; /** * PasswordField Component * * A password input field component that integrates with react-hook-form for form state management. * Includes a visibility toggle button to show/hide the password. * * @component * @param {Object} props - The component props * @param {FormRenderProps} props.props - Form rendering properties from parent form * @param {VariantProps} props.variant - UI variant style ('standard', 'outlined', etc.) * * @example * // Basic usage in FormRender * */ declare const PasswordField: ({ props, variant }: { props: FormRenderProps; variant: VariantProps; }) => import("react/jsx-runtime").JSX.Element; /** * Export the PasswordField component for use in the form renderer * This component is used for password input types */ export default PasswordField;