1 | import * as React from "react";
|
2 |
|
3 | declare namespace SafeAnchor {
|
4 | export interface SafeAnchorProps extends React.HTMLProps<SafeAnchor> {
|
5 | href?: string | undefined;
|
6 | onClick?: React.MouseEventHandler<{}> | undefined;
|
7 | disabled?: boolean | undefined;
|
8 | role?: string | undefined;
|
9 | componentClass?: React.ElementType | undefined;
|
10 | }
|
11 | }
|
12 | declare class SafeAnchor extends React.Component<SafeAnchor.SafeAnchorProps> {}
|
13 | export = SafeAnchor;
|