import { StatefulTreeProps } from '../StatefulTree'; interface UseExpandableProps { defaultExpanded: StatefulTreeProps['defaultExpanded']; onExpandedChange: StatefulTreeProps['onExpandedChange']; } export declare const useExpandable: ({ defaultExpanded, onExpandedChange }: UseExpandableProps) => { expandedNodes: string[]; onToggle: (nodeId: import("../../Tree").TreeNodeId, isExpanded: boolean) => void; }; export {}; //# sourceMappingURL=useExpandable.d.ts.map