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