import { InjectionKey } from 'vue'; import { ResolvedRoute, WithData } from '../types/resolved'; import { RouterRoute } from '../types/routerRoute'; import { RouterPush } from '../types/routerPush'; import { Router } from '../types/router'; export declare function isRouterRoute(routerKey: InjectionKey, value: unknown): value is RouterRoute; export declare function createRouterRoute(routerKey: InjectionKey, route: TRoute, push: RouterPush): RouterRoute;