import { Command, flags } from '@oclif/command'; export default class DevPatch extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; apply: import("@oclif/parser/lib/flags").IBooleanFlag; patchPath: flags.IOptionFlag; syncUp: import("@oclif/parser/lib/flags").IBooleanFlag; partialCommit: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise; }