import React, { ChangeEvent, InputHTMLAttributes } from "react"; import { Country } from "../types"; type PageProps = InputHTMLAttributes & { defaultValue?: Country; containerClassName?: string; inputClassName?: string; onChange?: (e: Country) => void; onTextChange?: (e: ChangeEvent) => void; placeHolder?: string; showFlag?: boolean; region?: string; src?: string; }; declare const PhonecodeSelect: ({ containerClassName, inputClassName, onTextChange, defaultValue, onChange, placeHolder, showFlag, region, src, ...props }: PageProps) => React.JSX.Element; export default PhonecodeSelect;