import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Text = "ax-text"; type TextProps = BoxProps & { "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 { [Text]: TextProps & Omit<(JSXBase.IntrinsicElements["p"]), keyof TextProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Text]: TextProps & Omit<(ComponentPropsWithoutRef<"p">), keyof TextProps>; } } } export { Text }; export type { TextProps };