import type { Tool } from '../core/tools/tool-types.js'; import { FleetManager, type FleetDeviceState } from './fleet-manager.js'; export interface BatchDeviceInput { action: 'status' | 'exec' | 'gather'; command?: string; devices?: string[]; filePath?: string; maxParallel?: number; } export declare function createBatchDeviceTool(fleetOrAliases?: FleetManager | FleetDeviceState[]): Tool; export declare const batchDeviceTool: Tool; //# sourceMappingURL=batch-device.d.ts.map