import { BaseCommand } from '../../base-command.js'; export default class DevicesStreams extends BaseCommand { static args: { id: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { days: import("@oclif/core/interfaces").OptionFlag; 'with-data': import("@oclif/core/interfaces").BooleanFlag; }; static summary: string; run(): Promise<{ streams: unknown[]; }>; }