import { WatcherPropsData } from "./index.js"; import { DefaultRow } from "../table/defaults.js"; import { Ref } from "vue"; //#region ../../packages/components/table/src/store/expand.d.ts declare function useExpand(watcherData: WatcherPropsData): { updateExpandRows: () => void; toggleRowExpansion: (row: T, expanded?: boolean) => void; setExpandRowKeys: (rowKeys: (string | number)[]) => void; isRowExpanded: (row: T) => boolean; states: { expandRows: Ref; defaultExpandAll: Ref; }; }; //#endregion export { useExpand as default };