import * as React from 'react'; import { GetComponentProps } from '~/typeUtilities'; import { StyleVariant } from './types'; import { Typography } from './typography'; export declare const Link: React.SFC<{ route: string; children: React.ReactNode; style?: React.CSSProperties; styleVariant?: StyleVariant; isInline?: boolean; onClick?: () => void; typographyProps?: GetComponentProps; }>;