/** * List devices command * * Displays supported devices from a driver package's DEVICES export. */ /** * Options for list-devices command */ export interface ListDevicesOptions { /** Driver package name (auto-detects from cwd if not specified) */ driver?: string; /** Output format: 'table' or 'json' */ format?: 'table' | 'json'; } /** * List devices command handler * * @param options - Command options */ export declare function listDevicesCommand(options: ListDevicesOptions): Promise; //# sourceMappingURL=list-devices.d.ts.map