import type { TableProps } from "ant-design-vue/lib/table"; import type { Ref } from "vue"; /** * 自适应表格高度的 hook. * @param tableWrapperRef * @param scroll */ export declare function useAdaptiveHeight(tableWrapperRef: Ref, scroll: Ref): { scrollOptions: import("vue").ComputedRef<{ x?: string | number | true | undefined; y: string | number; scrollToFirstRowOnChange: boolean; }>; };