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