import type { Indices } from './types';
export declare function scanForUnloadedIndices({ isRowLoaded, minimumBatchSize, rowCount, startIndex, stopIndex, }: {
    isRowLoaded: (index: number) => boolean;
    minimumBatchSize: number;
    rowCount: number;
    startIndex: number;
    stopIndex: number;
}): Indices[];
