import { default as React } from 'react'; type Color = 'primaryBlue' | 'primaryRed' | 'hash' | 'inherit'; export interface LinkProps extends React.HTMLAttributes { href?: string; target?: string; color: Color; lineHeight?: 'xs' | 'sm'; } type Ref = HTMLAnchorElement; export declare const Link: React.ForwardRefExoticComponent>; export default Link; //# sourceMappingURL=link.d.ts.map