import React from "react"; import { type LinkProps } from "../../Link/Link"; import type { PolymorphicComponentPropsWithRef } from "../../../types"; import { type ContentColor } from "../types"; export type ContentLinkProps = Omit & { color?: ContentColor | LinkProps["color"]; isDotted?: boolean; /** Provides additional line-height, inherits from ContentText if not provided */ isSpacedOut?: boolean; }; export type ContentLinkComponent = (props: PolymorphicComponentPropsWithRef) => React.ReactNode | null; export declare const ContentLink: ContentLinkComponent;