import React from 'react'; interface Common { status?: 'ok' | 'caution' | 'warning' | 'communication' | 'offer' | 'communication-light'; color?: string; textColor?: string; borderColor?: string; kind?: 'active' | 'outlined' | 'default'; className?: string; /** * @default 'top-right' */ position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; /** * If you eg. want to adjust the transform on the badge relative to its child. * See story for example */ style?: React.CSSProperties; children?: React.ReactNode; } interface Compact extends Common { size: 'compact'; } interface Default extends Common { size?: 'default'; text?: string; } export declare type BadgeProps = Compact | Default; export declare const Badge: React.FC; export {};