import { WorkflowStructure } from '../../../types/workflow-structure'; /** * Type guard to check if a value conforms to the WorkflowStructure interface. * * @param value - The value to check. * @returns True if the value is a valid workflow structure. */ export declare function isWorkflowStructure(value: unknown): value is WorkflowStructure;