import { PackageJson } from '@arcgis/components-build-utils'; import { CompilerContext } from '../context/index.ts'; import { Plugin } from 'vite'; /** * Update package.json to add references to api.json and other manifest files * we generate. These well-known fields set in the package.json are consumed by * IDEs and third party tools. */ export declare const updatePackageJson: (context: CompilerContext) => Plugin; declare function doPackageJsonUpdate(packageJson: PackageJson, context: Pick): PackageJson | undefined; export declare const exportsForTests: { doPackageJsonUpdate: typeof doPackageJsonUpdate; }; export {};