import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const LabelMenuButton = "ax-label-menu-button"; type LabelMenuButtonProps = BoxProps & { "size"?: never; "asChild"?: false | true; "as-child"?: false | true; "disabled"?: false | true; "square"?: false | true; "appearance"?: never; "loading"?: false | true; "label"?: string; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [LabelMenuButton]: LabelMenuButtonProps & Omit<(JSXBase.IntrinsicElements["button"]), keyof LabelMenuButtonProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [LabelMenuButton]: LabelMenuButtonProps & Omit<(ComponentPropsWithoutRef<"button">), keyof LabelMenuButtonProps>; } } } export { LabelMenuButton }; export type { LabelMenuButtonProps };