import { KeygenResult, ObjectKey } from '@sheinx/hooks'; import { DatumType } from '../tree/tree.type'; import { JssStyleType, CascaderProps } from './cascader.type'; export interface CascaderListProps extends Pick, 'loader' | 'multiple' | 'expandTrigger' | 'renderItem' | 'keygen' | 'mode' | 'size' | 'height' | 'virtual'> { jssStyle?: JssStyleType; id: KeygenResult; parentId: KeygenResult; data: DataItem[]; datum: DatumType['datum']; shouldFinal: boolean; path: Value; childrenKey: ObjectKey; onPathChange: (id: KeygenResult, item: DataItem | null, nextPath: Value, fromClick?: boolean) => void; onChange: (item: Value) => void; } //# sourceMappingURL=list.type.d.ts.map