import { SetStateAction } from 'react'; export interface IPaginationProps { currentPage: number; maxPages: number; buttonBgColor?: string; buttonTextColor?: string; setCurrentPage: (value: SetStateAction) => void; }