import { Plugin } from 'vite'; interface IPluginOptions { isSSR?: boolean; isBuild?: boolean; routesPath?: string; } /** * Add possibility to export route components like FCRoute or FCCRoute * USAGE: { path: '/', lazy: () => import('./pages/home') } * @see FCRoute * @see FCCRoute * @see importRoute * @constructor */ declare function ViteNormalizeRouterPlugin(options?: IPluginOptions): Plugin; export { ViteNormalizeRouterPlugin as default, IPluginOptions };