import type { ComputedRef } from 'vue'; import type { TableV2Props } from '../table'; import type { UseColumnsReturn } from './use-columns'; type UseStyleProps = { columnsTotalWidth: UseColumnsReturn['columnsTotalWidth']; fixedColumnsOnLeft: UseColumnsReturn['fixedColumnsOnLeft']; fixedColumnsOnRight: UseColumnsReturn['fixedColumnsOnRight']; rowsHeight: ComputedRef; }; export declare const useStyles: (props: TableV2Props, { columnsTotalWidth, rowsHeight, fixedColumnsOnLeft, fixedColumnsOnRight, }: UseStyleProps) => { bodyWidth: any; fixedTableHeight: any; mainTableHeight: any; leftTableWidth: any; rightTableWidth: any; windowHeight: any; footerHeight: any; emptyStyle: any; rootStyle: any; headerHeight: any; }; export type UseStyleReturn = ReturnType; export {};