/// import { OptionType } from "../../../types"; type Props = { children: string; className?: string; data: OptionType; }; declare function Option({ children, className, data }: Props): JSX.Element; export default Option;