import { ForwardRefExoticComponent, RefAttributes, ComponentProps } from 'react'; import { SelectTriggerProps } from '@base-ui/react'; import { PaginationSize } from './pagination-size-context'; import { PaginationTeleport } from './pagination-teleport'; declare const Pagination: ForwardRefExoticComponent & { size?: PaginationSize; }, 'ref'> & RefAttributes>; declare const PaginationContent: ForwardRefExoticComponent & { size?: PaginationSize; }, 'ref'> & RefAttributes>; declare const PaginationItem: ForwardRefExoticComponent & RefAttributes>; declare const PaginationStatus: ForwardRefExoticComponent & RefAttributes>; declare const PaginationSelectTrigger: ForwardRefExoticComponent & RefAttributes>; type PaginationLinkProps = { isActive?: boolean; isDisabled?: boolean; size?: PaginationSize; } & ComponentProps<'a'>; declare const PaginationLink: ForwardRefExoticComponent & RefAttributes>; declare const PaginationFirst: ForwardRefExoticComponent & { label?: string; }, 'ref'> & RefAttributes>; declare const PaginationPrevious: ForwardRefExoticComponent & { label?: string; }, 'ref'> & RefAttributes>; declare const PaginationNext: ForwardRefExoticComponent & { label?: string; }, 'ref'> & RefAttributes>; declare const PaginationLast: ForwardRefExoticComponent & { label?: string; }, 'ref'> & RefAttributes>; declare const PaginationEllipsis: ForwardRefExoticComponent & { size?: PaginationSize; label?: string; }, 'ref'> & RefAttributes>; declare const PaginationResultsPerPage: ForwardRefExoticComponent & RefAttributes>; declare const PaginationResultsPerPageLabel: ForwardRefExoticComponent & RefAttributes>; export { Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationLink, PaginationNext, PaginationPrevious, PaginationResultsPerPage, PaginationResultsPerPageLabel, PaginationSelectTrigger, PaginationStatus, PaginationTeleport, };