import * as Vue from 'vue';
import type { AnyRouter } from '@tanstack/router-core';
export declare const routerContext: Vue.InjectionKey<AnyRouter>;
/**
 * Provides the router to all child components
 */
export declare function provideRouter(router: AnyRouter): void;
/**
 * Injects the router from the component tree
 */
export declare function injectRouter(): AnyRouter;
