import { ComponentProps, FC } from "react"; import { EbayChangeEventHandler, EbayFocusEventHandler, EbayKeyboardEventHandler } from "../common/event-utils/types"; export interface PhoneInputEvent { value?: string; rawValue?: string; callingCode?: string; countryCode?: string; } export type EbayPhoneInputProps = Omit, "onChange"> & { countryCode?: string; value?: string; locale?: string; floatingLabel?: string; disabled?: boolean; readonly?: boolean; invalid?: boolean; onFocus?: EbayFocusEventHandler; onBlur?: EbayFocusEventHandler; onChange?: EbayChangeEventHandler; onInputChange?: EbayChangeEventHandler; onKeyDown?: EbayKeyboardEventHandler; onKeyPress?: EbayKeyboardEventHandler; onKeyUp?: EbayKeyboardEventHandler; onExpand?: () => void; onCollapse?: () => void; }; declare const EbayPhoneInput: FC; export default EbayPhoneInput; //# sourceMappingURL=phone-input.d.ts.map