export declare const linkRecipe: import("../..").RecipeDefinition<{
    variant: {
        underline: {
            color: "colorPalette.fg";
            textDecoration: "underline";
            textUnderlineOffset: "3px";
            textDecorationColor: "currentColor/20";
        };
        plain: {
            color: "colorPalette.fg";
            _hover: {
                textDecoration: "underline";
                textUnderlineOffset: "3px";
                textDecorationColor: "currentColor/20";
            };
        };
    };
}>;
