import { MosaicInfo } from '../../model/mosaic/MosaicInfo'; import { MosaicSearchCriteria } from '../searchCriteria/MosaicSearchCriteria'; import { PaginationStreamer } from './PaginationStreamer'; import { Searcher } from './Searcher'; /** * A helper object that streams {@link MosaicInfo} using the search. */ export declare class MosaicPaginationStreamer extends PaginationStreamer { /** * Constructor * * @param searcher the mosaic repository that will perform the searches */ constructor(searcher: Searcher); }