///
import { Theme } from 'styled-components';
import { TextProperties } from '../types';
export interface Props extends TextProperties {
visited?: boolean;
active?: boolean;
wordBreak?: 'normal' | 'break-all' | 'keep-all' | 'break-word';
}
export interface ThemedProps extends Props {
theme: Theme;
}
export declare const Link: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLAnchorElement>, Props>>;