export interface ContextMap { awsRequestId: string; [key: string]: unknown; } export interface ContextStorageProvider { getContext: () => ContextMap; setContext: (map: ContextMap) => void; updateContext: (values: Record) => void; } export declare const GlobalContextStorageProvider: ContextStorageProvider;