import { ReactNode } from "react"; export declare function Phone(props: PhoneProps): JSX.Element; export interface PhoneProps { style: any; labelStyle?: any; countryCode: string; value: string; onChange: (value: string, valid: boolean) => void; error?: string; label?: string; disabled?: boolean; descrition?: string | ReactNode; descritionStyle?: any; prefixStyle?: any; textStyle?: any; invalidStyle?: any; returnKeyType?: 'done' | 'go' | 'next' | 'search' | 'send'; }