import { ComputedRef, InjectionKey, Ref } from 'vue'; import { VVirtualListColumn, VVirtualListRenderCol, VVirtualListRenderItemWithCols } from './type'; export declare const xScrollInjextionKey: InjectionKey<{ startIndexRef: ComputedRef; endIndexRef: ComputedRef; columnsRef: Ref; renderColRef: Ref; renderItemWithColsRef: Ref; getLeft: (index: number) => number; }>;