import { ChangeEvent, CSSProperties, FocusEvent } from 'react';
export interface I_PhoneNumberInputProps {
    value?: string;
    onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
    onBlur?: (event: FocusEvent<HTMLInputElement>) => void;
    countryCode: string;
    onRemove?: VoidFunction;
    onAdd?: VoidFunction;
    isExtra?: boolean;
    isReadOnly?: boolean;
    label: string;
    isInvalid?: boolean;
    disabled?: boolean;
    placement?: string;
    name?: string;
    onCountryCodeChange?: (selectedCountryCode: string) => void;
    countryCodeSelectorHeight?: CSSProperties['height'];
}
//# sourceMappingURL=index.d.ts.map