import { ComponentProps as ComponentProps$1 } from "../utils/types/ComponentProps.js"; import { DistributiveOmit } from "../utils/modern-polymorphic.js"; import React, { ForwardedRef } from "react"; //#region src/Link/Link.d.ts type StyledLinkProps = { as?: As; /** @deprecated use CSS modules to style hover color */ hoverColor?: string; muted?: boolean; inline?: boolean; }; declare const Link: ((props: DistributiveOmit & StyledLinkProps<"a">, "as"> & { as?: As | undefined; } & React.RefAttributes) => React.ReactNode) & { displayName: string; }; type LinkProps = ComponentProps$1; //#endregion export { LinkProps, Link as default };