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