import type { Plugin } from "vite";
export declare function linkWorkerBundle({ code, manifestContent, projectRootDir, base, }: {
    code: string;
    manifestContent: string;
    projectRootDir: string;
    base?: string;
}): {
    code: string;
    map: null;
};
export declare const linkerPlugin: ({ projectRootDir, }: {
    projectRootDir: string;
}) => Plugin;
