export interface CuratedExemplarView { id: string; scenarioCode: string; roleCodes: string[]; content: string; scope: string; orgNodeId?: string | null; reviewStatus: string; privacyReviewStatus: string; label?: string | null; contentDigest: string; embedded: boolean; accessLevel: string; title?: string; createdAt?: string; } export declare function ingestCuratedScenarioExemplarRemote(options: { targetOrg: string; scenarioCode: string; roleCodes: string[]; content: string; scope: 'orgSubtree' | 'workspace'; orgNodeId?: string; label?: 'positive' | 'negative'; reviewStatus?: 'pending' | 'approved' | 'rejected'; privacyReviewStatus?: 'pending' | 'approved' | 'rejected'; title?: string; }): Promise; export declare function listCuratedScenarioExemplarsRemote(options: { targetOrg: string; scenarioCode?: string; }): Promise;