export declare const WORKFLOW_RESUME_FRAME_KINDS: readonly ["agent", "system", "workflow_call", "parallel"]; export type WorkflowResumeFrameKind = typeof WORKFLOW_RESUME_FRAME_KINDS[number]; export interface CanonicalWorkflowResumeFrame { readonly workflow: string; readonly workflow_ref: string; readonly step: string; readonly kind: WorkflowResumeFrameKind; readonly occurrence: number; } export declare function isWorkflowResumeFrameKind(value: unknown): value is WorkflowResumeFrameKind; export declare function parseCanonicalWorkflowResumeFrame(value: unknown, path?: string): CanonicalWorkflowResumeFrame; //# sourceMappingURL=workflow-resume.d.ts.map