import type { LTTaskRecord } from '../../types'; import type { ProcessSummary, ProcessStats } from './types'; export declare function listProcesses(filters: { limit?: number; offset?: number; workflow_type?: string; status?: string; search?: string; }): Promise<{ processes: ProcessSummary[]; total: number; }>; export declare function getProcessStats(period?: string): Promise; export declare function getProcessTasks(originId: string): Promise;