import * as React from 'react'; import { ButtonProps, SelectProps, TextProps } from '..'; 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; disabled?: boolean; } & Pick & React.ComponentProps<'a'>; declare const PaginationLink: { ({ className, isActive, size, disabled, ...props }: PaginationLinkProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationFirst: { ({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationLast: { ({ className, ...props }: React.ComponentProps): 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 interface PaginationPageCounterProps extends TextProps { currentPage: string | number; totalPages: string | number; } declare const PaginationPageCounter: { ({ currentPage, totalPages, className, ...props }: PaginationPageCounterProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const PaginationRowSelection: { ({ className, ...props }: SelectProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface PaginationSummaryProps extends TextProps { totalEntries: number | string; label: string; } declare const PaginationSummary: { ({ totalEntries, label, className, ...props }: PaginationSummaryProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationLink, PaginationNext, PaginationPageCounter, PaginationPrevious, PaginationRowSelection, PaginationSummary, };