import { default as React } from 'react'; import { SafeExtract, Size } from '../../../types'; import { CommonInputProps, PlaceholderProps } from '../types'; export interface PhoneInputProps extends CommonInputProps, PlaceholderProps { value?: string; defaultValue?: string; width?: SafeExtract; } export declare const PhoneInput: React.ForwardRefExoticComponent>;