import React from "react"; export type OptionType = { label: string; value: string; node?: React.ReactNode; disabled?: boolean; }; export type GroupOptionType = { label: string; options: Array; };