import { Type as NestType } from '@nestjs/common/interfaces/type.interface'; import { Constructor, Entity } from '../base.dto'; import { IBasePaginationResponse } from '../base.response'; export interface ICursorPaginationResponse extends IBasePaginationResponse { hasNextPage: boolean; nextCursor: string | null; } export declare const CursorPaginationResponse: (dto: Constructor) => NestType>; //# sourceMappingURL=cursor-based.pagination.d.ts.map