import { Uri } from '../utils/Types';
export declare const toMatchRoute: (uri?: Uri, route?: Uri | string) => jest.CustomMatcherResult;
declare global {
    namespace jest {
        interface Matchers<R, T> {
            toMatchRoute(route?: Uri | string): R;
        }
    }
}
