import { PageFile } from '@vtj/core'; import { RouteRecordRaw, RouteMeta } from 'vue-router'; export interface CreateStaticRoutesOptions { name: string; prefix: string; pages: PageFile[]; component: any; loader: (id: string) => Promise; routeMeta?: RouteMeta; homepage?: string; } export declare function createStaticRoutes(options: CreateStaticRoutesOptions): RouteRecordRaw[];