import { type PluginOption } from 'vite'; /** * There are similar plugins out there that try to do this but they aren't aggressive enough. This * plugin literally always reloads on save, no questions asked. */ export declare function alwaysReloadPlugin(config?: Partial<{ exclusions: string[]; /** Inclusions apply after exclusions so they will override exclusions. */ inclusions: string[]; }>): PluginOption;