import * as React from 'react'; import { type ButtonProps } from './button'; declare function Pagination({ className, ...props }: React.ComponentPropsWithoutRef<'nav'>): import("react/jsx-runtime").JSX.Element; declare function PaginationContent({ className, ref, ...props }: React.ComponentPropsWithoutRef<'ul'> & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; declare function PaginationItem({ className, ref, ...props }: React.ComponentPropsWithoutRef<'li'> & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; type PaginationLinkProps = { isActive?: boolean; } & Pick & React.ComponentPropsWithoutRef<'a'>; declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): import("react/jsx-runtime").JSX.Element; declare function PaginationPrevious({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function PaginationNext({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function PaginationEllipsis({ className, ...props }: React.ComponentPropsWithoutRef<'span'>): import("react/jsx-runtime").JSX.Element; export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, };