/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface LinkProps extends JSX.HTMLAttributes { href: string; /** Opens in a new tab with `rel="noopener noreferrer"`. */ external?: boolean; /** `inherit` takes the surrounding text colour, e.g. a title that is a link. */ variant?: "default" | "cta" | "mono" | "inherit"; } /** * Styled anchor. * * @example * Read the docs */ export declare const Link: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Link.d.ts.map