import React from 'react'; import { DefaultProps } from './types'; declare enum LinkStylesEnum { Link = "link", PrimaryButton = "primary", HollowButton = "hollow" } export interface LinkProps extends DefaultProps { fullWidth?: boolean; href: string; type?: 'link' | 'primary' | 'hollow' | LinkStylesEnum; } export declare const Link: React.SFC; export {};