/**
 * Modified copy of https://github.com/egoist/rollup-plugin-esbuild/blob/dev/src/minify.ts
 *
 * MIT License
 *
 * Copyright (c) 2020 EGOIST
 */
import type { TransformOptions } from "esbuild";
import type { Plugin } from "rollup";
type Options = Omit<TransformOptions, "sourcemap"> & {
    sourceMap?: boolean;
};
declare const getRenderChunk: ({ sourceMap, ...options }: Options) => Plugin["renderChunk"];
export = getRenderChunk;
