import { type Plugin } from "vite";
export declare function transformJsxScriptTagsCode(code: string, clientEntryPoints: Set<string>, manifest: Record<string, any> | undefined, projectRootDir: string, base: string): Promise<{
    code: string;
    map: null;
} | undefined>;
export declare const transformJsxScriptTagsPlugin: ({ clientEntryPoints, projectRootDir, }: {
    clientEntryPoints: Set<string>;
    projectRootDir: string;
}) => Plugin;
