import React from "react"; import { badgeThemes } from "../theme/badge"; export interface BadgeProps { children?: React.ReactNode; color?: keyof typeof badgeThemes; icon?: string; onClick?: () => void | Promise; size?: "xs" | "sm" | "md"; title?: string; truncate?: boolean; variant?: "outline" | "solid"; } export declare const Badge: ({ children, color, icon, onClick, size, title, truncate, variant, }: BadgeProps) => React.JSX.Element; //# sourceMappingURL=Badge.d.ts.map