export interface SourceOfTruthEntry { id: string; name: string; description: string; priority: number; locations: string[]; useWhen: string[]; verification: string; } export declare function defaultSourceOfTruthCatalog(): SourceOfTruthEntry[];