import type { Plugin } from "esbuild"; import type { BundlerEntryRecord, NormalizedBundlerLogger } from "../types.d.ts"; declare const VIRTUAL_ENTRY_NAMESPACE = "package-virtual-entry"; type VirtualEntriesPluginOptions = { entries: BundlerEntryRecord[]; logger: NormalizedBundlerLogger; rootDir: string; }; declare function createVirtualEntriesPlugin(options: VirtualEntriesPluginOptions): Plugin; export { VIRTUAL_ENTRY_NAMESPACE, createVirtualEntriesPlugin }; //# sourceMappingURL=virtual-entries.d.ts.map