import * as React from "react"; declare namespace SafeAnchor { export interface SafeAnchorProps extends React.HTMLProps { href?: string | undefined; onClick?: React.MouseEventHandler<{}> | undefined; disabled?: boolean | undefined; role?: string | undefined; componentClass?: React.ElementType | undefined; } } declare class SafeAnchor extends React.Component {} export = SafeAnchor;