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