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