export interface IPaginationProps { /** * set the current page for the initial render * @default 1 */ currentPage?: number; /** * optional value to split your array of items into grouped "pages" * @default 10 */ itemsPerPage?: number; /** * the amount of pagination buttons to be displayed to the user * @default 10 */ maxPagesShown?: number; /** * when the user clicks one of the items to change page */ onPageChange: (page: number) => void; /** * apply custom CSS */ style?: React.CSSProperties; /** * the length of the array of items you wish to paginate */ totalItems: number; } //# sourceMappingURL=types.d.ts.map