export type OptionCommon = { label: string; }; export type Option = OptionCommon & { created?: boolean; value: T; isTitle: boolean; type?: 'Group'; [prop: string]: any; }; export type OptionGroup = OptionCommon & { options: Array; [prop: string]: any; }; export type OptionType = Option | OptionGroup