export declare const listSessions: { name: string; description: string; inputSchema: { type: string; properties: { project_name: { type: string; description: string; }; workflow_name: { type: string; description: string; }; status: { type: string; enum: string[]; description: string; }; from_time: { type: string; description: string; }; to_time: { type: string; description: string; }; limit: { type: string; description: string; }; last_id: { type: string; description: string; }; }; required: never[]; }; handler: (args: unknown) => Promise<{ sessions: { status: string; project_name: string; workflow_name: string; id: string; project: { id: string; name: string; }; workflow: { id: string; name: string; }; sessionUuid: string; sessionTime: string; lastAttempt?: { id: string; retryAttemptName: string | null; done: boolean; success: boolean; cancelRequested: boolean; params: Record; createdAt: string; finishedAt: string | null; status: string; poolId: string; }; }[]; next_page_id: string | undefined; count: number; }>; }; //# sourceMappingURL=list-sessions.d.ts.map