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