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