import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PaginationItemProps extends ComposableProps<'div'> { /** * Page number for this item */ page: number; /** * Custom content (optional, defaults to page number) */ children?: React.ReactNode; } /** * PaginationItem Component * * A composable component for individual page items in Pagination. * Automatically handles active state and page changes. * * @public * * @example * ```tsx * * * * * * * ``` * * @remarks * - Wraps a Button component by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically applies active state styling. * - Accessible: includes ARIA attributes. */ export declare const PaginationItem: React.ForwardRefExoticComponent>; //# sourceMappingURL=PaginationItem.d.ts.map