import { PhoneNumberComponentSchema } from '@open-formulieren/types'; import { RegistryEntry } from '../types'; export interface PhoneNumberFieldProps { componentDefinition: PhoneNumberComponentSchema; } /** * A component to enter phone numbers. * * @todo - this is deprecated in the Open-Forms-SDk - check what we can do with this * component. * @deprecated - ideally we should be able to use textfield with the appropriate * validators. */ export declare const PhoneNumberField: React.FC; declare const PhoneNumberComponent: RegistryEntry; export default PhoneNumberComponent;