import * as React from 'react'; import { IGlobalAttributes, IParent, IReferenceable, ICustomizable, IAnimatable } from '../core'; export interface LegacyAnchorTagProps extends IGlobalAttributes, IParent, IReferenceable, ICustomizable, IAnimatable { href?: string; rel?: string; target?: string; onClick?: (e: React.MouseEvent) => void; } export declare function LegacyAnchorTag(props: LegacyAnchorTagProps): JSX.Element;