import type { DiscoveryStrategy } from '../discovery/parameter-generator.js'; /** * Discover command options */ export interface DiscoverOptions { port: string; strategy?: DiscoveryStrategy; driver?: string; timeout?: number; delay?: number; maxDevices?: number; id?: string | string[]; parity?: string | string[]; baudRate?: string | string[]; verbose?: boolean; silent?: boolean; format: 'table' | 'json'; } /** * Discover command implementation * * Scans for Modbus RTU devices on the specified port by testing * different slave IDs and serial parameters. * * @param options - Command options */ export declare function discoverCommand(options: DiscoverOptions): Promise; //# sourceMappingURL=discover.d.ts.map