import React, { ChangeEvent, InputHTMLAttributes } from "react";
import { Country } from "../types";
type ComponentProps = Omit, "defaultValue" | "onChange"> & {
placeHolder?: string;
options: Array;
inputClassName?: string;
onTextChange?: (e: ChangeEvent) => void;
defaultValue?: Country | string;
onChange: (e: Country) => void;
showFlag?: boolean;
};
declare const PhonecodeDropdown: ({ placeHolder, options, onChange, inputClassName, onTextChange, defaultValue, showFlag, ...props }: ComponentProps) => React.JSX.Element;
export default PhonecodeDropdown;