import React from "react"; import { STATUS_VARIANT } from "../../types"; export interface LinkProps { as?: any; noStyles?: boolean; statusVariant?: STATUS_VARIANT; [key: string]: any; } export declare const Link: React.ForwardRefExoticComponent & React.RefAttributes>;