import { Plugin } from 'vite';
import { Options } from './options.js';
/**
 * This plugin invalidates the files for routes when new files
 * are added/deleted.
 *
 * Workaround for: https://github.com/vitejs/vite/issues/10616
 *
 * @returns
 */
export declare function routerPlugin(options?: Options): Plugin[];
