import { BaseButtonProps } from "../Button"; export interface PaginationItemProps extends BaseButtonProps, Omit, "color"> { current?: boolean; } export declare const PaginationItem: ({ current, children, ...props }: PaginationItemProps) => import("@emotion/react/jsx-runtime").JSX.Element;