import React from "react";
interface StkLinkProps {
    href: string;
    target: string;
    label: string;
    color?: string;
}
export declare function StkLink({ href, target, label, color }: StkLinkProps): React.JSX.Element;
export {};
