import type { MemoryProvenanceRecord, MemoryScopeRef } from './types.js'; export interface MemoryProvenanceQueryOptions { scopes?: MemoryScopeRef[]; includeLegacyUnscoped?: boolean; limit?: number; } export declare function getMemoryProvenance(memoryId: string, options?: MemoryProvenanceQueryOptions): Promise; export declare function listMemoriesByEnvelopeHash(envelopeHash: string, options?: MemoryProvenanceQueryOptions): Promise; export declare function listMemoriesByGatewayCallId(gatewayCallId: string, options?: MemoryProvenanceQueryOptions): Promise; export declare function listMemoriesByModelRunId(modelRunId: string, options?: MemoryProvenanceQueryOptions): Promise; //# sourceMappingURL=provenance-query.d.ts.map