import { FieldBaseProps } from '../base'; /** * Props for {@link TextField}. * Extends {@link FieldBaseProps}. * * @category TextField */ export type TextFieldProps = Omit; /** * Text field component used to collect user input. * * Use for forms, search, and general data entry. * * @category TextField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const TextField: import('react').ForwardRefExoticComponent>;