import React from 'react'; import { Theme } from '../../theme'; export interface BadgeProps { /** The color theme of the badge */ color: keyof Theme['colors']; /** The badge has a solid background */ hasSolidBackground?: boolean; /** Whether the badge should stretch to fill his parent or not */ stretch?: boolean; /** Whether the Badge should be emphasized or not */ emphasized?: boolean; /** The size of the Badge. Defaults to `medium`. */ size?: 'small' | 'medium'; /** @ignore */ children: React.ReactNode; } declare const _default: React.MemoExoticComponent>>; export default _default;