import type { FC, HTMLProps } from "react"; /** * Properties for the `Option` component. */ export type OptionProps = HTMLProps; declare const Option: FC; export default Option;