export declare class MaxSizeExceededError extends Error {
    constructor(message: string);
}
export declare const chunkEntriesBatch: <EntryType>({ entries, computeEntrySize, maxBatchSize, maxBatchLength, }: {
    entries: EntryType[];
    computeEntrySize: (entry: EntryType) => number;
    maxBatchSize: number;
    maxBatchLength: number;
}) => EntryType[][];
//# sourceMappingURL=chunkEntriesBatch.d.ts.map