/** * Data definitions for tree multiselect component */ export interface TreeSelectOption { label: string; value: string; id?: string | number; children?: TreeSelectOption[]; selected?: boolean; expanded?: boolean; parent?: TreeSelectOption; level?: number; } export interface SelectedBadge { label: string; value: string; parent?: string; } export declare const multiselectStyles: { wrapperClass: string; labelClass: string; selectClass: string; selectTextClass: string; placeholderClass: string; selectedTextClass: string; dropdownIconClass: string; dropdownClass: string; dropdownContentClass: string; searchWrapperClass: string; searchIconClass: string; searchInputClass: string; optionClass: string; optionSelectedClass: string; indentationClasses: string[]; expandIconClass: string; checkboxClass: string; checkboxSelectedClass: string; checkboxUnselectedClass: string; checkmarkIconClass: string; optionLabelClass: string; optionLabelSelectedClass: string; selectedBadgesClass: string; badgeClass: string; badgeCloseClass: string; noResultsClass: string; errorClass: string; indentClass: string; }; export declare const treeOptions: TreeSelectOption[];