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