import React from 'react'; import { DdiSelectorProps } from './ddi-selector'; declare type Props = { 'data-qa'?: string; autoFocus?: boolean; ddiOptions: DdiSelectorProps[]; defaultDdiCode?: string; disabled?: boolean; hint?: string; id?: string; label: string; mask?: string | RegExp; maxLength?: number; minLength?: number; onChange?: Function; onDdiChange: Function; placeholder?: string; style?: object; theme?: TTheme; value: string; }; declare const PhoneInput: React.FC; export default PhoneInput; export declare type TTheme = 'complete' | 'enabled' | 'negative';