export interface ManifestEntry { nexusType: string; memberName: string; originalType: string; } export interface ManifestParseResult { entries: ManifestEntry[]; warnings: string[]; } export declare function parseManifest(filePath: string): ManifestParseResult;