import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * UrlField - URL input with clickable link in readonly mode * Validates URLs to only render http/https links for security */ export declare function UrlField({ value, onChange, field, readonly, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;