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