import { FieldBaseProps } from '../base'; /** * Props for {@link UrlField}. * Extends {@link FieldBaseProps}. * * @category UrlField */ export type UrlFieldProps = Omit; /** * URL field component used to enter web addresses. * * Use for collecting links and website references in forms. * * @category UrlField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const UrlField: import('react').ForwardRefExoticComponent>;