import type { InjectionKey } from 'vue';
import type { BatchProps } from './batch';
export interface BatchContext {
    size?: BatchProps['size'];
}
export declare const batchContextKey: InjectionKey<BatchContext>;
