/** * Pagination class holds the current collection response pagination and links */ export declare class WpPagination { currentPage: number; totalPages: number; totalObjects: number; links: any; /** Pagination holds the navigation data and links provided from WP API response header*/ constructor(currentPage?: number, totalPages?: number, totalObjects?: number, links?: any); readonly hasMore: boolean; readonly hasPrev: boolean; }