import React from 'react';
import type { PhoneInputProps as DefaultPhoneInputProps } from 'react-phone-input-2';
export type PhoneInputProps = Pick<DefaultPhoneInputProps, 'country' | 'placeholder' | 'onChange' | 'value' | 'onMount' | 'disabled'> & {
    inputProps?: Omit<React.InputHTMLAttributes<HTMLInputElement>, 'style' | 'value' | 'onChange'>;
    id?: string;
};
declare const Phone: React.FC<PhoneInputProps>;
export { Phone, };
//# sourceMappingURL=phone.d.ts.map