export interface MultiselectTypeOption { id: string; label: string; code: string; selectable: boolean; value: boolean; level: number; parentId?: string | null; children?: MultiselectTypeOption[]; }