import { Type as NestType } from '@nestjs/common/interfaces/type.interface'; import { Constructor, Entity } from '../base.dto'; import { IBasePaginationResponse } from '../base.response'; export interface IPagePaginationResponse extends IBasePaginationResponse { prevPage: number | null; currPage: number; nextPage: number | null; lastPage: number | null; } export declare const PagePaginationResponse: (dto: Constructor) => NestType>; //# sourceMappingURL=page-based.pagination.d.ts.map