import type { Plugin } from 'esbuild';
/**
 * A simple ESBuild plugin bundling _only_ local files, and marking anything
 * imported from `node_modules` as _external_.
 */
export declare function bundleLocals(): Plugin;
