import type { LTGraphWorkflowConfig } from '../types/startup'; /** * Register declarative graph (YAML/DAG) workflows at startup — the graph-form * peer of durable `workers`. Each flow is created insert-if-absent, then * deployed + activated through the same path the dashboard uses. * * On a re-boot where the flow already exists: * - description and output_schema are synced if stale * - when the YAML version bumps, yaml_content is updated and the flow is redeployed * * Per-flow failures are logged and skipped so a single malformed flow can never * block boot. */ export declare function seedGraphWorkflows(configs: LTGraphWorkflowConfig[]): Promise;