UNPKG

@100mslive/hms-ai-ui

Version:
29 lines (28 loc) 1.45 kB
import * as React from "react"; import { ButtonProps } from "..//ui/button"; declare const Pagination: { ({ className, ...props }: React.ComponentProps<"nav">): React.JSX.Element; displayName: string; }; declare const PaginationContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>; declare const PaginationItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>; type PaginationLinkProps = { isActive?: boolean; } & Pick<ButtonProps, "size"> & React.ComponentProps<"a">; declare const PaginationLink: { ({ className, isActive, size, ...props }: PaginationLinkProps): React.JSX.Element; displayName: string; }; declare const PaginationPrevious: { ({ className, ...props }: React.ComponentProps<typeof PaginationLink>): React.JSX.Element; displayName: string; }; declare const PaginationNext: { ({ className, ...props }: React.ComponentProps<typeof PaginationLink>): React.JSX.Element; displayName: string; }; declare const PaginationEllipsis: { ({ className, ...props }: React.ComponentProps<"span">): React.JSX.Element; displayName: string; }; export { Pagination, PaginationContent, PaginationLink, PaginationItem, PaginationPrevious, PaginationNext, PaginationEllipsis, };