/** * A config containing properties for Pagination */ export declare class PaginationConfig { /** * The current page number */ pageNumber?: number; /** * The total number of items in the data set. */ totalItems?: number; /** * Page size increments for the 'per page' dropdown */ pageSizeIncrements?: Array; /** * The initial page size to use */ pageSize?: number; }