import { FC } from 'react'; import { ButtonProps } from '../../../Button'; export interface PaginationItemProps extends ButtonProps { /** * Marks this item as the currently active page. * Applies visual emphasis. */ current?: boolean; } /** * The PaginationText component represents a single page within a pagination interface. * It extends ButtonProps and supports dynamic behavior and styling. * * This makes the component fully composable and accessible, with both link-based and button-based pagination supported. */ export declare const PaginationItem: FC;