export declare abstract class PaginationParams { term?: string; pageIndex: number; pageSize: number; } export interface PaginationResponse extends PaginationParams { total: number; results: T[]; }