import { Command, flags } from '@oclif/command'; export default class TemplatesUpdate extends Command { static description: string; static examples: string[]; static flags: { file: flags.IOptionFlag; package: flags.IOptionFlag; outputVersion: flags.IOptionFlag; }; static args: never[]; run(): Promise; }