import type { RegisterOptions } from "react-hook-form" export type CountryProps = { className?: string label: string name?: string placeholder?: string readOnly?: boolean registerOptions?: RegisterOptions } export type CountryPortalContainer = HTMLDivElement | undefined export type CountryPortalContainerArgs = HTMLDivElement | null