import { AsElementProps } from "../../../../types/shared.mjs"; import { PolymorphicComponentProps } from "../../../../internal/factory/create-polymorphic-factory.mjs"; import { BaseProps } from "../../../core/base/Base.mjs"; import React from "react"; //#region src/components/styles/typography/link/Link.d.ts type LinkProps = { noVisitedState?: boolean; textColour?: boolean; noUnderline?: boolean; } & BaseProps; declare const Link: ((props: PolymorphicComponentProps) => React.ReactElement) & Omit & Omit, "className" | "children" | "as" | "noVisitedState" | "textColour" | "noUnderline"> & { ref?: any; renderRoot?: (props: any) => any; }) | ({ noVisitedState?: boolean; textColour?: boolean; noUnderline?: boolean; } & { className?: string; } & { children?: React.ReactNode | undefined; } & { as: keyof React.JSX.IntrinsicElements | React.JSXElementConstructor; renderRoot?: (props: Record) => any; })>, never> & Record; //#endregion export { Link, LinkProps };