import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Badge = "ax-badge"; type BadgeProps = BoxProps & { "intent"?: "danger" | "primary" | "information" | "success" | "warning" | "neutral"; "variant"?: "strong" | "subtle"; "lineClamp"?: "1" | "2" | "4" | "3"; "line-clamp"?: "1" | "2" | "4" | "3"; "truncate"?: false | true; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Badge]: BadgeProps & Omit<(JSXBase.IntrinsicElements["span"]), keyof BadgeProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Badge]: BadgeProps & Omit<(ComponentPropsWithoutRef<"span">), keyof BadgeProps>; } } } export { Badge }; export type { BadgeProps };