import { Plugin } from "vite";
export declare const configPlugin: ({ mode, silent, projectRootDir, clientEntryPathname, workerEntryPathname, isUsingPrisma, }: {
    mode: "development" | "production";
    silent: boolean;
    projectRootDir: string;
    clientEntryPathname: string;
    workerEntryPathname: string;
    isUsingPrisma: boolean;
}) => Plugin;
