///
import { TRouteMatcher, TRouteMatchResult } from './createMatcher';
import { IUniversalInterfaceProps } from '../typing';
export interface IRouteData {
fullRoute: string;
route: string;
parent: IRouteData;
matches: TRouteMatchResult;
}
export interface IMatchProps extends IUniversalInterfaceProps {
ns?: string;
exact?: boolean;
match?: TRouteMatcher | RegExp | string;
truncate?: boolean;
}
declare const Match: React.SFC;
export default Match;