import { BaseCommand } from '../../base-command.js'; import { type IngestBatchRequest } from '../../lib/contracts/index.js'; export default class IngestBatch extends BaseCommand { static description: string; static examples: string[]; static flags: { file: import("@oclif/core/interfaces").OptionFlag; stdin: import("@oclif/core/interfaces").BooleanFlag; }; static summary: string; run(): Promise; }