import { type ExportsField } from "./build-package-json-exports.js"; import type { Config } from "./config.js"; /** * Generate the exports object for the package given the arguments. * * `packageJsonPath` is the package.json the exports are destined for; source * paths in the exports map are emitted relative to its directory. */ declare function generateExports(args: Config, packageJsonPath?: string): Promise; export { generateExports, }; export type { Config } from "./config.js";