import * as React from "react"; declare const Pagination: { ({ className, ...props }: React.ComponentProps<"nav">): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationContent: React.ForwardRefExoticComponent, HTMLUListElement>, "ref"> & React.RefAttributes>; declare const PaginationItem: React.ForwardRefExoticComponent, HTMLLIElement>, "ref"> & React.RefAttributes>; type PaginationLinkProps = { isActive?: boolean; sizeValue?: "default" | "sm" | "lg" | "icon"; } & React.ComponentProps<"a">; declare const PaginationLink: { ({ className, isActive, sizeValue, ...props }: PaginationLinkProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationPrevious: { ({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationNext: { ({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationEllipsis: { ({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, };