import React from 'react'; export interface Props { href?: string; color?: boolean; icon?: boolean; underline?: boolean; block?: boolean; className?: string; } type NativeAttrs = Omit, keyof Props>; export type LinkProps = Props & NativeAttrs; declare const Link: React.ForwardRefExoticComponent & import("../use-scale").ScaleProps, "ref"> & React.RefAttributes>; export default Link;