import { type HTMLAttributes } from "react"; export interface PaginationProps extends HTMLAttributes { currentPage: number; totalPages: number; onPageChange?: (page: number) => void; siblingCount?: number; /** Accessible label for the nav element (default: "ページネーション") */ label?: string; /** Accessible label for the previous button (default: "前のページ") */ prevLabel?: string; /** Accessible label for the next button (default: "次のページ") */ nextLabel?: string; } export declare const Pagination: import("react").ForwardRefExoticComponent>;