///
import { StatelessComponent, HTMLProps } from 'react';
import { LocationDescriptorObject } from 'history';
import { Match, ValOrFunc } from './utils';
export declare type LinkProps = HTMLProps & {
to: ValOrFunc<(string | LocationDescriptorObject)>;
activeClassName?: string;
match?: ValOrFunc;
replace?: boolean;
noSubscribe?: boolean;
};
export declare const Link: StatelessComponent;