import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { P as PointerDownOutsideEvent, F as FocusOutsideEvent } from '../types-B4RnVKcG.js'; import { BoxProps } from './Box.js'; declare const AlertDialogContent = "ax-alert-dialog-content"; type AlertDialogContentProps = BoxProps & { "size"?: "sm" | "md" | "lg"; "asChild"?: false | true; "as-child"?: false | true; "onEscapeKeyDown"?: (event: KeyboardEvent) => void; "onPointerDownOutside"?: (event: PointerDownOutsideEvent) => void; "onFocusOutside"?: (event: FocusOutsideEvent) => void; "onInteractOutside"?: (event: PointerDownOutsideEvent | FocusOutsideEvent) => void; "onOpenAutoFocus"?: (event: Event) => void; "onCloseAutoFocus"?: (event: Event) => void; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [AlertDialogContent]: AlertDialogContentProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof AlertDialogContentProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [AlertDialogContent]: AlertDialogContentProps & Omit<(ComponentPropsWithoutRef<"div">), keyof AlertDialogContentProps>; } } } export { AlertDialogContent }; export type { AlertDialogContentProps };