import React from 'react'; import { CSS } from "../config"; import { StyledLinkVariants } from "./link-styled"; export interface Props extends StyledLinkVariants { href?: string; icon?: boolean; className?: string; css?: CSS; } declare type NativeAttrs = Omit, keyof Props>; export declare type LinkProps = Props & NativeAttrs; declare const Link: React.ForwardRefExoticComponent>; export default Link;