import React, { FocusEvent } from 'react'; type PhoneTelInputProps = { name: string; value: string; disabled?: boolean; maxLength?: number; placeholder?: string; showCountrySelect?: boolean; onChange: (event: React.ChangeEvent) => void; onFocus?: (event: FocusEvent) => void; onBlur: (event: FocusEvent) => void; onKeyDown: (event: React.KeyboardEvent) => void; }; declare const PhoneTelInput: ({ name, value, disabled, maxLength, placeholder, showCountrySelect, onChange, onFocus, onBlur, onKeyDown, }: PhoneTelInputProps) => React.JSX.Element; export default PhoneTelInput; //# sourceMappingURL=PhoneTelInput.d.ts.map