import * as React from 'react' import { RadiumStyles, ElementAttributes } from '../..' import { WithThemeInjectedProps, ApplyWithTheme } from '../../styles/themer/withTheme' export interface LinkProps extends WithThemeInjectedProps { /** The link's text content. */ children?: React.ReactNode /** `href` attribute for the anchor tag. */ href?: string /** Callback fired when the link is clicked. */ onClick(e: React.MouseEvent, props: LinkProps): void /** Any additonal props */ elementAttributes?: ElementAttributes> style?: RadiumStyles } declare const Link: ApplyWithTheme> export default Link