import type { InjectionKey, Ref } from 'vue';
export interface CellGroupContext {
    total: Ref<number>;
    getCellGroupItemIndex: () => number;
}
declare const cellGroupInjectionKey: InjectionKey<CellGroupContext>;
export { cellGroupInjectionKey };
