import { SwellCommand } from '../swell-command.js'; export default class Schema extends SwellCommand { static summary: string; static examples: { description: string; command: string; }[]; static args: { type: import("@oclif/core/lib/interfaces/parser.js").Arg>; file: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { format: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; run(): Promise; protected catch(error: Error): Promise; private listTypes; private showSchemaInfo; private outputSchema; private validate; private validateFunction; private getFileInput; private readFromStdin; private getSchemaUrl; private getBundledSchemaUrl; private getTypeScriptDeclarationsUrl; }