import React from 'react'; export interface GoToPageOptions { replace: boolean; } export interface PaginationState { currentPage: number; offset: number; perPage: number; goToPage: (page: number, options?: GoToPageOptions) => void; setProductsPerPage: (perPage: number) => void; queryParam?: string; } declare const PaginationContext: React.Context; export default PaginationContext;