import { FieldBaseProps } from '../base'; /** * Props for {@link PhoneField}. * Extends {@link FieldBaseProps}. * * @category PhoneField */ export type PhoneFieldProps = Omit; /** * Phone field component used to enter telephone numbers. * * Use for collecting contact phone information in forms. * * @category PhoneField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const PhoneField: import('react').ForwardRefExoticComponent>;