import React from 'react'; import { CSS } from '../theme/stitches.config'; import { PaginationItemVariantsProps } from './pagination.styles'; interface Props { active?: boolean; value?: string | number; onlyDots?: boolean; disabled?: boolean; bordered?: boolean; animated?: boolean; preserveContent?: boolean; onClick?: (e: React.MouseEvent) => void; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type PaginationItemProps = Props & NativeAttrs & PaginationItemVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit, "preserveContent">>; export default _default;