import { GroupBase } from 'react-select'; export type OptionSelectTree = { value: string | number | null; label?: string; children?: OptionSelectTree[]; }; export interface SelectTreeProps