import type { WorkflowState } from "./state.js"; export type WorkflowPushContext = { repo?: string; instance_id?: string; session_id?: string; }; export type WorkflowPushResult = { success: boolean; status?: number; error?: string; }; export declare function setWorkflowPushContext(context: WorkflowPushContext): void; export declare function pushWorkflowSnapshot(endpoint: string, apiKey: string, workflow: WorkflowState): Promise; //# sourceMappingURL=push.d.ts.map