import type { KnowledgeSynthesisStatus } from '../knowledge/types.js'; export type ConnectedSourceEntity = { externalId: string; itemType: string; occurredAt?: string; sourceUpdatedAt?: string; value: Record; metadata: Record; synthesisStatus: KnowledgeSynthesisStatus; }; export declare function normalizeConnectedSourceResult(input: { toolkit: string; actionId: string; result: unknown; }): ConnectedSourceEntity[];