import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Banner = "ax-banner"; type BannerProps = BoxProps & { "intent"?: "danger" | "information" | "success" | "warning" | "neutral"; "onDismiss"?: () => void; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Banner]: BannerProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof BannerProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Banner]: BannerProps & Omit<(ComponentPropsWithoutRef<"div">), keyof BannerProps>; } } } export { Banner }; export type { BannerProps };