import React from 'react'; import { CSS } from '../theme/stitches.config'; interface Props { isPrev?: boolean; disabled?: boolean; onlyDots?: boolean; animated?: boolean; bordered?: boolean; onClick?: (e: React.MouseEvent) => void; } declare type NativeAttrs = Omit, keyof Props>; export declare type PaginationIconProps = Props & NativeAttrs & { css?: CSS; }; declare const MemoPaginationIcon: React.NamedExoticComponent; export default MemoPaginationIcon;