import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const CardLink = "ax-card-link"; type CardLinkProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; "disabled"?: false | true; "cover"?: false | true | "inset"; "appearance"?: "default" | "subtle" | "inverse"; "href"?: string; "external"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [CardLink]: CardLinkProps & Omit<(JSXBase.IntrinsicElements["a"]), keyof CardLinkProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [CardLink]: CardLinkProps & Omit<(ComponentPropsWithoutRef<"a">), keyof CardLinkProps>; } } } export { CardLink }; export type { CardLinkProps };