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