export declare class PaginatedList { private _data; constructor(_data: any); readonly hasNextPage: boolean; readonly hasPreviousPage: boolean; readonly isFirstPage: boolean; readonly isLastPage: boolean; readonly pageCount: number; readonly pageSize: number; readonly totalItemCount: number; readonly pageNumber: number; readonly items: Array; }