export interface DurableFunctionContext { durable_function_execution_name: string; durable_function_execution_id: string; } export declare function extractDurableFunctionContext(event: any): DurableFunctionContext | undefined; /** * Parses a DurableExecutionArn to extract execution name and ID. * ARN format: arn:aws:lambda:{region}:{account}:function:{func}:{version}/durable-execution/{name}/{id} */ export declare function parseDurableExecutionArn(arn: string): { executionName: string; executionId: string; } | undefined; //# sourceMappingURL=durable-function-context.d.ts.map