export declare type FetchMoreParams = {
    desiredMoreAmount: number;
    currentAmount: number;
    moreItems: boolean;
};
/**
 * Checks if we can fetch more items.
 * @param {number} desiredAmount Specifies the actual amount we want to get. Over 2000.
 * @return {boolean}
 */
export declare function fetchMore({ desiredMoreAmount, currentAmount, moreItems, }: FetchMoreParams): boolean;
//# sourceMappingURL=fetchMore.d.ts.map