import * as React from 'react'; import { StandardProps } from '../../common'; export interface BadgeProps extends StandardProps { /** * The content of the badge to display. */ children?: React.ReactNode; /** * Sets the mode to a filling badge. Useful together with the `Avatar`. * By default false. * @default false */ fill?: boolean; } /** * The badge component is a simple informative display. */ export declare const Badge: React.SFC & { inner: { readonly FilledBadge: any; readonly NormalBadge: any; }; };