import type { PackageJson } from 'type-fest'; import type { CommonjsBundleOptions } from '../types.js'; interface CreateCommonjsBundleProps { pkgPath: string; pkg: PackageJson; rollupOptions?: CommonjsBundleOptions; } /** Bundles all dependencies with Rollup to produce a CommonJS bundle */ export declare function createCommonjsBundle({ pkgPath, pkg, rollupOptions, }: CreateCommonjsBundleProps): Promise; export {};