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