import type { LTApiResult } from '../../types/sdk'; /** * List active workflow workers with their registration status. * * @param input.include_system — include system workflows (default: false) * @returns `{ status: 200, data: { workers: [{ name, task_queue, registered, system }] } }` */ export declare function listWorkers(input: { include_system?: boolean; }): Promise; /** * Discover all known workflow types from workers, history, and config. * * Merges three sources: active in-memory workers, historical entities * from the durable jobs table, and registered workflow configs. Returns * a unified list with status flags for each type. * * @param input.include_system — include system workflows (default: false) * @returns `{ status: 200, data: { workflows: [{ workflow_type, task_queue, registered, active, invocable, ... }] } }` */ export declare function listDiscoveredWorkflows(input: { include_system?: boolean; }): Promise; /** * List all cron-scheduled workflows and their active state. * * @returns `{ status: 200, data: { schedules: [{ workflow_type, cron_schedule, active, ... }] } }` */ export declare function getCronStatus(): Promise;