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