import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * EmailField - Email address input with mailto link in readonly mode * Renders as a clickable mailto link when readonly, standard email input otherwise */ export declare function EmailField({ value, onChange, field, readonly, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;