import type { ValidationResult } from "../../shared/types.js"; export interface WorkflowStep { id: string; action: string; condition?: string; timeout?: number; } export interface Workflow { name: string; steps: WorkflowStep[]; triggers?: string[]; } /** * Parses YAML workflow file. * WARNING: Workflow execution deferred to later phase (P24.3.3.2). */ export declare function parseWorkflowFile(filePath: string): Promise; /** * Validates workflow structure. */ export declare function validateWorkflow(workflow: Workflow): ValidationResult; //# sourceMappingURL=workflow-parser.d.ts.map