import { IDefaultFunction } from '../../types/IDefaultFunction'; import { IPaginationStore, IPaginationWrapperProps } from './PaginationStore/types'; export interface IPaginationProps extends IPaginationWrapperProps, IPaginationStore { headingText?: string; showAll?: boolean; currPage?: number; onChangePage?: IDefaultFunction; itemsPerPage?: number; className?: string; itemsName?: string; onClickShowAll?: IDefaultFunction; }