14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
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
|