import { SingleSelectProps } from "./Select"; import { SimpleInputProps } from "./Input"; import { Omit } from "utility-types"; export interface PhoneNumberInputProps { countryCode: OptionType; phone: string; onChange: ({ countryCode, phone }: { countryCode: OptionType; phone: string; }) => void; // Optional className?: string; selectProps?: Partial>; inputProps?: Omit; placeholder?: string; required?: boolean; }