import type { PackageJson } from '../types/package-json.js'; declare const INDENT: unique symbol; declare const NEWLINE: unique symbol; interface ExtendedPackageJson extends PackageJson { [INDENT]?: string; [NEWLINE]?: string; } export declare const load: (filePath: string) => Promise; export declare const save: (filePath: string, content: ExtendedPackageJson) => Promise; export declare const getEntrySpecifiersFromManifest: (manifest: PackageJson) => Set; export declare const getManifestImportDependencies: (manifest: PackageJson) => Set; export {};