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