import type { FC } from "react"; import type { IPagination, IPaginationItem } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент пагинации * @returns {ReactElement} */ declare const Pagination: FC; export type { IPagination, IPaginationItem, }; export { Pagination };