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