///
export declare const routes: ({
path: string;
component: () => Promise;
category?: undefined;
} | {
category: string;
path: string;
component: () => Promise<{
default: typeof import("./demo/DemoDirective");
}>;
} | {
category: string;
path: string;
component: () => Promise;
})[];
export declare const router: import("vue-router").Router;