import type { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from "react"; import type { IPageItemProps, IPaginationText } from "./PageItem.types"; declare const PageItem: ForwardRefExoticComponent & RefAttributes>; export default PageItem; export declare const First: { ({ children, ...props }: IPageItemProps): JSX.Element; displayName: IPaginationText; }; export declare const Prev: { ({ children, ...props }: IPageItemProps): JSX.Element; displayName: IPaginationText; }; export declare const Ellipsis: { ({ children, ...props }: IPageItemProps): JSX.Element; displayName: IPaginationText; }; export declare const Next: { ({ children, ...props }: IPageItemProps): JSX.Element; displayName: IPaginationText; }; export declare const Last: { ({ children, ...props }: IPageItemProps): JSX.Element; displayName: IPaginationText; };