import * as React from 'react'; export interface SafeAnchorProps { className?: string; style?: React.CSSProperties; href?: string; onClick?: (event: any) => void; disabled?: boolean; role?: string; tabIndex?: number | string; componentClass?: React.ReactType; } export declare class SafeAnchor extends React.Component { static defaultProps: SafeAnchorProps; constructor(props: SafeAnchorProps, context: any); handleClick: (event: React.SyntheticEvent) => void; render(): JSX.Element; }