import { InjectionKey } from 'vue'; import { Router } from '../types/router'; type UseRouterDepthProps = { increment?: boolean; }; type UseRouterDepthFunction = (props?: UseRouterDepthProps) => number; export declare function createUseRouterDepth(routerKey: InjectionKey): UseRouterDepthFunction; export {};