export interface UiAssetRefEvidence { sourceType: 'prefab' | 'asset'; sourcePath: string; line: number; fieldName: string; guid: string; snippet: string; } export interface ScanUiAssetRefInput { repoRoot: string; scopedPaths?: string[]; targetGuids?: string[]; } export declare function scanUiAssetRefs(input: ScanUiAssetRefInput): Promise;