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