import type { Nullable } from '@cblink/finches-utils/types';
import type { Ref, ComputedRef } from 'vue';
export declare function useTableHeight(propsRef: ComputedRef, tableElRef: Ref, paginationElRef: Ref): {
getHeightRef: ComputedRef<Nullable<number>>;
};