export type BadgeProps = {
    /**
     * Badge variant.
     *
     * @default 'default'
     */
    intent?: 'default' | 'info' | 'success' | 'warning' | 'error';
    /**
     * Text to display inside the badge.
     */
    children: string;
};
//# sourceMappingURL=types.d.ts.map