import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Indicator = "ax-indicator"; type IndicatorProps = BoxProps & { "content"?: string | number | false | true; "disabled"?: false | true; "offset"?: false | true; "ping"?: false | true; "position"?: "bottom-right" | "top-right"; "asChild"?: false | true; "as-child"?: false | true; "intent"?: "danger" | "primary" | "information" | "success" | "warning" | "neutral"; "variant"?: "strong" | "subtle"; "lineClamp"?: "1" | "2" | "4" | "3"; "line-clamp"?: "1" | "2" | "4" | "3"; "truncate"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Indicator]: IndicatorProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof IndicatorProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Indicator]: IndicatorProps & Omit<(ComponentPropsWithoutRef<"div">), keyof IndicatorProps>; } } } export { Indicator }; export type { IndicatorProps };