import { MatchResult } from "./router"; export declare class RouteContext { params: any; private _matches; private _pendingRoutePath; private _currentMatch; constructor(pathname: string); push(match: MatchResult): void; pop(): MatchResult; getPendingRoutePath(): string; getMatches(): MatchResult[]; getCurrentMatch(): MatchResult; private _setPendingRoutePath(value); private _getLastMatch(); }