export declare function esbuildDownlevelPlugin(): Promise<{
    name: string;
    transform(_code: string, id: string): Promise<{
        code: string;
        map: import("rollup").SourceMap;
    } | undefined>;
}>;
