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. */ declare function generateExports(args: Config): Promise; export { generateExports, }; export { defineConfig } from "./config.js"; export type { Config } from "./config.js";