import { Plugin } from "vite";
export declare const configPlugin: ({ silent, projectRootDir, workerEntryPathname, clientFiles, serverFiles, clientEntryPoints, }: {
    silent: boolean;
    projectRootDir: string;
    workerEntryPathname: string;
    clientFiles: Set<string>;
    serverFiles: Set<string>;
    clientEntryPoints: Set<string>;
}) => Plugin;
