import type { FinallyColumnType, Key } from '../interface'; import type { Ref } from 'vue'; export interface BodyRowsContextProps { columns: Ref; columnStartIndex: Ref; } export declare const useProvideBodyRows: (props: BodyRowsContextProps) => void; export declare const useInjectBodyRows: () => BodyRowsContextProps; export interface BodyRowContextProps { top: Ref; height: Ref; rowKey: Ref; } export declare const useProvideBodyRow: (props: BodyRowContextProps) => void; export declare const useInjectBodyRow: () => { top: Ref; height: Ref; rowKey: Ref; };