import * as React from "react"; import { Router } from "router5"; declare class Link extends React.Component { static contextTypes: React.ValidationMap; context: { router: Router; }; render(): JSX.Element; } interface IDispatchToProps { dispatch: any; } interface IOwnProps { name: string; params?: { [key: string]: string | number; }; options?: any; } declare const connectedLink: import("react-redux").ConnectedComponentClass>; export { connectedLink as Link, Link as UnconnectedLink };