import type { LTApiResult } from '../../types/sdk'; /** * List all registered workflow configurations. * * @returns `{ status: 200, data: { workflows: LTWorkflowConfig[] } }` */ export declare function listWorkflowConfigs(): Promise; /** * Get a single workflow configuration by type. * * @param input.type — workflow type name (e.g. `"reviewContent"`) * @returns `{ status: 200, data: }` or 404 */ export declare function getWorkflowConfig(input: { type: string; }): Promise; /** * Create or replace a workflow configuration. * * Invalidates the config cache and restarts the cron schedule if one * is defined. Idempotent — safe to call repeatedly with the same input. * * @param input.type — workflow type name * @param input.invocable — whether the workflow can be started via the API * @param input.task_queue — HotMesh task queue * @param input.default_role — default escalation role * @param input.description — human-readable description * @param input.execute_as — service account for proxy invocation * @param input.roles — roles that can resolve escalations * @param input.invocation_roles — roles that can invoke this workflow * @param input.consumes — workflow types whose data this workflow consumes * @param input.tool_tags — MCP tool tags for discovery * @param input.envelope_schema — JSON Schema for envelope.data validation * @param input.resolver_schema — JSON Schema for resolver payload validation * @param input.cron_schedule — cron expression for scheduled execution * @returns `{ status: 200, data: }` */ export declare function upsertWorkflowConfig(input: { type: string; invocable?: boolean; task_queue?: string | null; default_role?: string; description?: string | null; execute_as?: string | null; roles?: string[]; invocation_roles?: string[]; consumes?: string[]; tool_tags?: string[]; envelope_schema?: any; resolver_schema?: any; cron_schedule?: string | null; }): Promise; /** * Delete a workflow configuration. * * Removes the config record and invalidates the cache. Active workers * continue running — this only removes the config/interceptor binding. * * @param input.type — workflow type name * @returns `{ status: 200, data: { deleted: true, workflow_type } }` or 404 */ export declare function deleteWorkflowConfig(input: { type: string; }): Promise;