export interface UnityConfig { maxSyntheticEdgesPerClass: number; maxSyntheticEdgesTotal: number; enableContainerNodes: boolean; lazyMaxPaths: number; lazyBatchSize: number; lazyMaxMs: number; payloadMode: 'compact' | 'full'; parityWarmup: boolean; parityWarmupMaxParallel: number; paritySeedCacheIdleMs: number; paritySeedCacheMaxEntries: number; parityCacheMaxEntries: number; } export type ConfigSourceMap = Record; export interface ResolvedUnityConfig { config: UnityConfig; configSource: ConfigSourceMap; } export declare function resolveUnityConfig(cliArgs?: Partial, configPath?: string): ResolvedUnityConfig;