/// import { OptionType } from "../../../types"; type Props = { className?: string; label: string; options: Array; }; declare function GroupOption({ className, label, options }: Props): JSX.Element; export default GroupOption;