import React from 'react'; /** * Props for the TextField component. */ interface TextFieldProps { /** The current value of the input field. */ value: string; /** The type of the input field (e.g., 'text', 'password', 'email'). */ type?: React.HTMLInputTypeAttribute; /** The name of the input field. */ name: string; /** The label text for the input field. */ label: string; /** The placeholder text for the input field. */ placeholder: string; /** Whether the input field has an error state. */ error?: boolean; /** A function to update the value of the input field. */ setValue: React.Dispatch>; /** Optional helper text to display below the input field. */ helperText?: string; /** Optional callback function triggered when the input field loses focus. */ onBlur?: () => void; /** Optional callback function triggered when a key is pressed in the input field. */ onKeyDown?: (e: React.KeyboardEvent) => void; } /** * A reusable and customizable text input field component. * Supports regular text inputs, password inputs, and other HTML input types. * Includes optional error states, helper text, and password visibility toggle. * * @example * ```tsx * // Regular text input * * * // Password input with visibility toggle * * ``` */ declare const TextField: ({ value, placeholder, name, type, label, error, setValue, helperText, onBlur, onKeyDown, }: TextFieldProps) => React.JSX.Element; export default TextField; export type { TextFieldProps };