Files
2026-01-12 09:12:41 +00:00

7 lines
228 B
TypeScript

import * as React from 'react';
/**
* Control the active open options path.
*/
declare const useActive: (multiple?: boolean, open?: boolean) => [React.Key[], (activeValueCells: React.Key[]) => void];
export default useActive;