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