import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * TextField - Standard single-line or multi-line text input * Automatically renders as a textarea when rows are configured in field metadata */ export declare function TextField({ value, onChange, field, readonly, ...props }: FieldWidgetComponentProps): React.JSX.Element;