import { PropType } from 'vue'; import { Location, Action } from 'history'; import { Navigator } from '../api/types'; export declare const Router: import("vue").DefineComponent<{ location: { required: true; type: PropType>; }; navigator: { required: true; type: PropType; }; action: { required: false; type: PropType; default: Action; }; static: { required: false; type: BooleanConstructor; default: boolean; }; }, () => import("vue").VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ location?: unknown; navigator?: unknown; action?: unknown; static?: unknown; } & { location: Location; action: Action; navigator: Navigator; static: boolean; } & {}>, { action: Action; static: boolean; }>;