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