import * as React from 'react'; import { Palette, Size } from '../types'; import { BoxProps } from '../Box'; export declare type LocalBadgeProps = { /** Indicates if the badge is attached to it's parent. */ isAttached?: boolean; /** The color of the badge. */ palette?: Palette; /** The size of the badge. */ size?: Size; }; export declare type BadgeProps = BoxProps & LocalBadgeProps; export declare const Badge: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };