import type { TableV2Props } from './table'; import type { TableGridInstance } from './table-grid'; declare function useTable(props: TableV2Props): { columns: import("@vue/reactivity").Ref; containerRef: import("@vue/reactivity").Ref; mainTableRef: import("@vue/reactivity").Ref; leftTableRef: import("@vue/reactivity").Ref; rightTableRef: import("@vue/reactivity").Ref; isDynamic: import("@vue/reactivity").ComputedRef; isResetting: import("@vue/reactivity").ShallowRef; isScrolling: import("@vue/reactivity").ShallowRef; hoveringRowKey: import("@vue/reactivity").ShallowRef; hasFixedColumns: import("@vue/reactivity").ComputedRef; columnsStyles: import("@vue/reactivity").ComputedRef>; columnsTotalWidth: import("@vue/reactivity").ComputedRef; data: import("@vue/reactivity").ComputedRef; expandedRowKeys: import("@vue/reactivity").Ref; depthMap: import("@vue/reactivity").Ref>; fixedColumnsOnLeft: import("@vue/reactivity").ComputedRef[]>; fixedColumnsOnRight: import("@vue/reactivity").ComputedRef[]>; mainColumns: import("@vue/reactivity").ComputedRef; bodyWidth: import("@vue/reactivity").ComputedRef; emptyStyle: import("@vue/reactivity").ComputedRef; rootStyle: import("@vue/reactivity").ComputedRef; headerWidth: import("@vue/reactivity").ComputedRef; footerHeight: import("@vue/reactivity").ComputedRef; mainTableHeight: import("@vue/reactivity").ComputedRef; fixedTableHeight: import("@vue/reactivity").ComputedRef; leftTableWidth: import("@vue/reactivity").ComputedRef; rightTableWidth: import("@vue/reactivity").ComputedRef; showEmpty: import("@vue/reactivity").ComputedRef; getRowHeight: (rowIndex: number) => number; onColumnSorted: (e: MouseEvent) => void; onRowHovered: ({ hovered, rowKey }: import("./row").RowHoverParams) => void; onRowExpanded: ({ expanded, rowData, rowIndex, rowKey, }: import("./row").RowExpandParams) => void; onRowsRendered: (params: import("./grid").onRowRenderedParams) => void; onRowHeightChange: ({ rowKey, height, rowIndex }: import("./row").RowHeightChangedParams, fixedDir: import("./constants").FixedDir) => void; scrollTo: (params: import("./composables").ScrollPos) => void; scrollToLeft: (scrollLeft: number) => void; scrollToTop: (scrollTop: number) => void; scrollToRow: (row: number, strategy?: import("./composables").ScrollStrategy) => void; onScroll: (params: import("./composables").ScrollPos) => void; onVerticalScroll: ({ scrollTop }: import("./composables").ScrollPos) => void; }; export { useTable }; export declare type UseTableReturn = ReturnType;