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