import type { DependencyDiff, ReadResult } from '../types.js'; interface GetDestinationManifestProps { cwd?: string; } export declare const getDestinationManifest: (props?: GetDestinationManifestProps) => Promise; interface DiffDependenciesProps { old: Record; new: Record; } export declare const diffDependencies: (props: DiffDependenciesProps) => DependencyDiff; export {};