import { BaseCommand } from '../../base-command.js'; import { type IngestBatchRequest } from '../../lib/contracts/index.js'; export default class IngestJson extends BaseCommand { static args: { value: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { device: import("@oclif/core/interfaces").OptionFlag; stream: import("@oclif/core/interfaces").OptionFlag; tag: import("@oclif/core/interfaces").OptionFlag; timestamp: import("@oclif/core/interfaces").OptionFlag; }; static summary: string; run(): Promise; }