import React from 'react'; import { shadow } from '../theme/shadow'; export declare type BadgeProps = { className?: string; children?: React.ReactNode; count?: number; type?: 'primary'; shape?: 'circle' | 'square'; animated?: boolean; onClick?(): void; shadow?: keyof typeof shadow; }; export declare const Badge: (props: BadgeProps) => JSX.Element;