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