import type { UnityPrefabSourceRef, UnityScanContext } from '../unity/scan-context.js'; export interface UnityParitySeed { version: 1; symbolToScriptPath: Record; scriptPathToGuid: Record; guidToResourcePaths: Record; assetGuidToPath?: Record; prefabSourceRefs?: UnityPrefabSourceRef[]; } export declare function buildUnityParitySeed(scanContext: UnityScanContext): UnityParitySeed;