import type { Plugin } from 'vite'; export { normalizeBasePath, parseRoutesFromFile as parseRoutes } from '@lark-apaas/devtool-kits'; interface RouteParserPluginOptions { appPath?: string; outputPath?: string; /** Base path for the routes content (e.g., '/miaoda_custom_plugin'). If not provided, reads from CLIENT_BASE_PATH env */ basePath?: string; /** Base path for serving routes.json in dev mode (e.g., '/miaoda_custom_plugin'). Defaults to CLIENT_BASE_PATH env */ serveBasePath?: string; } export declare function routeParserPlugin(options?: RouteParserPluginOptions): Plugin; export default routeParserPlugin; //# sourceMappingURL=route-parser-plugin.d.ts.map