import { type CommandModule } from 'yargs'; import { type LogLevel } from '../../../lib/live-logging.js'; import { type APICommandFlags } from '../../../lib/command/api-command.js'; export type CommandArgs = APICommandFlags & { all?: boolean; hubAddress?: string; hub?: string; connectTimeout?: number; logLevel?: LogLevel; driverId?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=logcat.d.ts.map