import { RouterService } from "./router-service"; export declare class RouterDispatcherService { vm: any; constructor(vm: any); dispatchFromMeta(meta: any): boolean; dispatch(type: string, payload: unknown): Promise; } export declare const registerActionDispatcher: (router: RouterService, vm: any) => void;