import type { OioTreeNode } from '@oinone/kunlun-shared'; import type { TreeData } from './tree'; export interface CardCascaderItemData extends TreeData { expandedKeys?: string[]; selectedKeys?: string[]; searchValue?: string; parentNode?: OioTreeNode; }