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