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