import React from 'react'; import { CSS } from '../theme/stitches.config'; import { PaginationHighlightVariantsProps } from './pagination.styles'; interface Props { active: number; rounded?: boolean; noMargin?: boolean; shadow?: boolean; css?: CSS; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type PaginationHighlightProps = Props & NativeAttrs & PaginationHighlightVariantsProps; declare const PaginationHighlight: React.FC; export default PaginationHighlight;