import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Heading = "ax-heading"; type HeadingProps = BoxProps & { "level"?: "1" | "2" | "4" | "3"; "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 { [Heading]: HeadingProps & Omit<(JSXBase.IntrinsicElements["h1"]), keyof HeadingProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Heading]: HeadingProps & Omit<(ComponentPropsWithoutRef<"h1">), keyof HeadingProps>; } } } export { Heading }; export type { HeadingProps };