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 DialogContent = "ax-dialog-content"; type DialogContentProps = BoxProps & { "size"?: "sm" | "md" | "lg" | "fullscreen"; "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 { [DialogContent]: DialogContentProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof DialogContentProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [DialogContent]: DialogContentProps & Omit<(ComponentPropsWithoutRef<"div">), keyof DialogContentProps>; } } } export { DialogContent }; export type { DialogContentProps };