import * as React from "react"; import type { ButtonProps } from "./button"; /** * Props for the {@link Pagination} component. */ export type PaginationProps = React.ComponentPropsWithoutRef<"nav">; /** * Props for the {@link PaginationContent} component. */ export type PaginationContentProps = React.ComponentPropsWithoutRef<"ul">; /** * Props for the {@link PaginationItem} component. */ export type PaginationItemProps = React.ComponentPropsWithoutRef<"li">; /** * Props for the {@link PaginationLink} component. */ export interface PaginationLinkProps extends Pick, React.ComponentPropsWithoutRef<"a"> { /** Marks the link as the current active page. @default false */ isActive?: boolean; } /** * Props for the {@link PaginationPrevious} component. */ export type PaginationPreviousProps = React.ComponentPropsWithoutRef; /** * Props for the {@link PaginationNext} component. */ export type PaginationNextProps = React.ComponentPropsWithoutRef; /** * Props for the {@link PaginationEllipsis} component. */ export type PaginationEllipsisProps = React.ComponentPropsWithoutRef<"span">; /** * Provides semantic navigation for paginated content. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `