import { BaseCommand } from '../../base-command.js'; import { type ContractManifestOperation } from '../../lib/contracts/index.js'; export default class SchemaOperation extends BaseCommand { static args: { operationId: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static summary: string; run(): Promise<{ generatedAt: string; operation: ContractManifestOperation; }>; }