import type { ComputedRef } from 'vue'; import type { BasicTableProps, TableCustomRecord } from '../types/table'; export declare function useTableStyle(propsRef: ComputedRef, prefixCls: string): { getRowClassName: (record: TableCustomRecord, index: number) => string; };