import { type Plugin } from 'esbuild';
export type SwallowTopLevelExportsPluginParams = {
    entry?: string;
};
export declare function swallowTopLevelExportsPlugin(opts?: SwallowTopLevelExportsPluginParams): Plugin;
