import PageItem, { Ellipsis, First, Last, Next, Prev } from "./PageItem"; import type { PaginationProps } from "react-bootstrap/Pagination"; import type { BsPrefixRefForwardingComponent } from "react-bootstrap/helpers"; export interface IPaginationProps extends PaginationProps { } export declare type IElement = HTMLUListElement; export declare type IPaginationWrapper = BsPrefixRefForwardingComponent<"ul", IPaginationProps>; export interface IPagination extends IPaginationWrapper { First: typeof First; Prev: typeof Prev; Ellipsis: typeof Ellipsis; Item: typeof PageItem; Next: typeof Next; Last: typeof Last; }