import type { PackageJson } from 'type-fest'; import type { CommonjsBundleOptions } from '../types/commonjs.js'; export declare function generateTypeDefinitionBundle({ packageDirectory, }: { packageDirectory: string; }): Promise; interface GenerateCommonjsBundlesArgs { tsconfigPath: string; package: PackageJson; packageJsonPath: string; rollupOptions?: CommonjsBundleOptions; } /** Bundles all dependencies with Rollup to produce a CommonJS bundle */ export declare function generateCommonjsBundles({ package: pkg, packageJsonPath, rollupOptions, }: GenerateCommonjsBundlesArgs): Promise; export {};