import { BaseComponentProps, Signal } from '../types.js'; export type BadgeVariant = 'default' | 'primary' | 'accent' | Signal; export interface BadgeProps extends BaseComponentProps { variant?: BadgeVariant; } export declare function Badge({ variant, style, children, ...rest }: BadgeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=badge.d.ts.map