import type { Ref } from 'vue'; import type { WatcherPropsData } from '.'; declare function useExpand(watcherData: WatcherPropsData): { updateExpandRows: () => void; toggleRowExpansion: (row: T, expanded?: boolean) => void; setExpandRowKeys: (rowKeys: string[]) => void; isRowExpanded: (row: T) => boolean; states: { expandRows: Ref; defaultExpandAll: Ref; }; }; export default useExpand;