import type { UnpluginFactory } from "unplugin"; /** * During build we always want to use the virtual modules since they have better * code splitting than the real files. * * This plugin intercepts imports to the `outdir` folder & uses the virtal plugin instead */ export declare const virtualModules: UnpluginFactory<{ outdir: `${string}/`; getModule: (id: string) => string | undefined; buildOnly: boolean; }>; //# sourceMappingURL=virtual.d.ts.map