import { BuildOptions, Loader, Plugin } from "esbuild";

//#region src/loadExternalFile/bundleFile.d.ts
type ESBuildPlugin = Plugin;
declare const getLoader: (extension: string) => Loader;
declare const bundleFileSync: (code: string, filePath: string, options?: BuildOptions) => string | undefined;
declare const bundleFile: (code: string, filePath: string, options?: BuildOptions) => Promise<string | undefined>;
//#endregion
export { ESBuildPlugin, bundleFile, bundleFileSync, getLoader };
//# sourceMappingURL=bundleFile.d.ts.map