import { Invitation } from '../entities/invitation.entity'; import { SkipLimitScroller } from './skip-limit-scroller'; declare type FetchInvitations = ({ skip, limit }: { skip?: number; limit?: number; }) => Promise; export declare class InvitationScroller extends SkipLimitScroller { private fetchInvitations; constructor({ fetchInvitations, skip, limit }: { fetchInvitations: FetchInvitations; skip: number; limit: number; }); fetch(): Promise; } export {};