export type KnownSceneSource = 'helsinki-672496d1' | 'bistro-interior'; export declare function inventoryKnownSceneSource(source: KnownSceneSource, archivePath: string): Promise<{ schemaVersion: string; source: KnownSceneSource; originalSha256: string; archive: { entries: number; compressedBytes: number; uncompressedBytes: number; }; selected: { entries: number; uncompressedBytes: number; paths: string[]; }; attribution: { license: string; licenseUrl: string; creator: string; title: string; url: string; citation?: string; changes: string; }; }>; export declare function compileKnownSceneSource(input: { source: KnownSceneSource; archivePath: string; outputDir: string; }): Promise<{ scenePath: string; receiptPath: string; resourcePaths: string[]; totalBytes: number; scene: import("@hypersoniclabs/helix-manifest").HelixSceneV2; }>;