import * as React from "react"; import type { PaginationProp } from "../../props/components/navigation.prop.js"; export type { PaginationProp, PaginationProp as PaginationProps, PaginationSizeProp, PaginationAlignProp, } from "../../props/components/navigation.prop.js"; declare const PaginationContent: React.ForwardRefExoticComponent & React.RefAttributes>; declare const PaginationItem: React.ForwardRefExoticComponent & React.RefAttributes>; declare const PaginationLink: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref">, "type"> & { isActive?: boolean; disabled?: boolean; href?: string; } & React.RefAttributes>; declare function PaginationEllipsis({ className, ...props }: React.HTMLAttributes): React.JSX.Element; declare namespace PaginationEllipsis { var displayName: string; } declare const PaginationPrevious: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref">, "type"> & { isActive?: boolean; disabled?: boolean; href?: string; } & React.RefAttributes>; declare const PaginationNext: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref">, "type"> & { isActive?: boolean; disabled?: boolean; href?: string; } & React.RefAttributes>; export declare function Pagination({ ariaLabel, value, total, pageSize, pageSizeOptions, showSizeChanger, showTotal, hideOnSinglePage, simple, showQuickJumper, size, align, responsive, disabled, className, onValueChange, }: PaginationProp): React.JSX.Element | null; export { PaginationContent, PaginationItem, PaginationLink, PaginationEllipsis, PaginationPrevious, PaginationNext, };