export declare const getTaskLogs: { name: string; description: string; inputSchema: { type: string; properties: { attempt_id: { type: string; description: string; }; task_name: { type: string; description: string; }; offset: { type: string; description: string; }; limit: { type: string; description: string; }; }; required: string[]; }; handler: (args: unknown) => Promise<{ logs: string; next_offset: number | undefined; has_more: boolean; }>; }; //# sourceMappingURL=get-task-logs.d.ts.map