import * as React from "react"; import { ButtonProps } from "./button.js"; declare function Pagination({ className, ...props }: React.ComponentProps<"nav">): React.JSX.Element; declare namespace Pagination { var displayName: string; } declare const PaginationContent: React.ForwardRefExoticComponent, HTMLUListElement>, "ref"> & React.RefAttributes>; declare const PaginationItem: React.ForwardRefExoticComponent, HTMLLIElement>, "ref"> & React.RefAttributes>; type PaginationLinkProps = { isActive?: boolean; } & Pick & React.ComponentProps<"a">; declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): React.JSX.Element; declare namespace PaginationLink { var displayName: string; } declare function PaginationPrevious({ className, ...props }: React.ComponentProps): React.JSX.Element; declare namespace PaginationPrevious { var displayName: string; } declare function PaginationNext({ className, ...props }: React.ComponentProps): React.JSX.Element; declare namespace PaginationNext { var displayName: string; } declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<"span">): React.JSX.Element; declare namespace PaginationEllipsis { var displayName: string; } export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, }; //# sourceMappingURL=pagination.d.ts.map