import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Code = "ax-code"; type CodeProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Code]: CodeProps & Omit<(JSXBase.IntrinsicElements["main"]), keyof CodeProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Code]: CodeProps & Omit<(ComponentPropsWithoutRef<"main">), keyof CodeProps>; } } } export { Code }; export type { CodeProps };