import React from "react"; import { PaginationProps } from "./Pagination"; import { PageProps } from "./Page"; export interface NumberedPagesProps extends PaginationProps { /** The number of the first item */ start?: number; /** The number of the last item */ end: number; /** A string mask representing the generic href syntax that include `$i` that would be replaced by the page number automatically */ hrefMask?: string; /** Page link props */ pageLinkProps?: PageProps; } export declare const NumberedPagination: React.FC; export default NumberedPagination;