import { FormItemProps, InputProps } from 'antd'; import { NamePath } from 'rc-field-form/lib/interface'; import React from 'react'; interface PhoneInputProps extends InputProps { } export declare const PhoneInput: React.FC; export interface PhoneInputFormItemProps extends FormItemProps { name: NamePath; skipValidityCheck?: boolean; errorMessage?: string; countryCode?: string; } export declare const PhoneInputFormItem: React.FC; export {};