import { ESBuildContext } from './types.cjs';
import '@nx/devkit';
import '@storm-software/build-tools';
import '@storm-software/config';
import 'esbuild';
import 'tsup';

/**
 * Generate the package.json file for the project
 *
 * @param context - The build context
 * @returns The build context
 */
declare function generatePackageJson(context: ESBuildContext): Promise<ESBuildContext>;

export { generatePackageJson };
