import type { DiagnoseSection, DiagnoseVerbosity } from '../services/diagnostics'; import type { LTApiResult } from '../types/sdk'; export declare function diagnose(input: { workflowId: string; appId?: string; maxEvents?: number; /** Heavy sections to include (events, streams). Default: verdict only. */ include?: DiagnoseSection[]; /** Shorthand: 'full' includes events + streams; 'summary' (default) includes neither. */ verbosity?: DiagnoseVerbosity; }): Promise; export declare function stalledJobs(input: { appId?: string; idleMinutes?: number; workflowType?: string; limit?: number; }): Promise; export declare function orphanedSignals(input: { appId?: string; withinHours?: number; limit?: number; }): Promise;