import { Command, flags } from "@oclif/command"; /** * oclif command to start the spot contract validation server */ export default class ValidationServer extends Command { static description: string; static examples: string[]; static args: { name: string; required: boolean; description: string; hidden: boolean; }[]; static flags: flags.Input; run(): Promise; }