import { TUiColorTypes } from '../../../types/TUiColorTypes'; import { TPageNumberList } from '../../atoms/PageNumberList'; export type TPaginator = { currentPage?: number; showPages?: number; themeType?: TUiColorTypes; outlinedButton?: boolean; onPageChange?: (page: number) => void; pageLimits?: number; }; export type TPaginatorWithTPageNumberListProps = TPaginator & Omit; export type TPaginatorWithHTMLAttrs = TPaginatorWithTPageNumberListProps & React.HTMLAttributes;