import { FC, HTMLAttributes } from "react"; //#region src/components/data-display/badge/badge.d.ts type Props = { text: string; size?: 'sm' | 'md' | 'lg'; interactive?: boolean; tone?: 'neutral' | 'info' | 'success' | 'warning' | 'error'; variant?: 'solid' | 'outline'; } & Omit, 'children' | 'className' | 'style'>; declare const Badge: FC; //#endregion export { Badge };