import { MultiCascadeTreeProps, ItemKeys } from '../types'; import { type ItemType } from '../utils'; /** * A hook that converts the value into a cascading value * @param props * @param flattenData */ declare function useCascadeValue(props: Partial> & ItemKeys, flattenData: ItemType[]): { value: T[]; setValue: import("react").Dispatch>; splitValue: (item: ItemType, checked: boolean, value: T[]) => { value: T[]; removedValue: T[]; }; handleCheck: (...args: any[]) => any; }; export default useCascadeValue;