/**
 * @export
 * @class PaginationResponse
 */
export declare class PaginationResponse<T> {
    /**
     * @type {number}
     * @memberof PaginationResponse
     */
    totalCount?: number;
    /**
     * @type {number}
     * @memberof PaginationResponse
     */
    offset?: number;
    /**
     * @type {number}
     * @memberof PaginationResponse
     */
    limit?: number;
    /**
     * @type {string}
     * @memberof PaginationResponse
     */
    previous?: string;
    /**
     * @type {string}
     * @memberof PaginationResponse
     */
    next?: string;
    /**
     * @type {T[]}
     * @memberof PaginationResponse
     */
    items?: T[];
    constructor(obj?: Partial<PaginationResponse<T>>, type?: new (obj: any) => T);
}
export default PaginationResponse;
