/** Pagination statistics. */
export type PageStatistics = {
    /** The current page number. */
    currentPage?: number;
    /** The number of items per page. */
    pageSize?: number;
    /** The total number of pages. */
    totalPages?: number;
    /** The total number of elements. */
    totalElements?: number;
};
//# sourceMappingURL=pageStatistics.d.ts.map