import { Command, flags } from '@oclif/command'; export default class Modify extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; done: import("@oclif/parser/lib/flags").IBooleanFlag; text: flags.IOptionFlag; priority: flags.IOptionFlag; project: flags.IOptionFlag; context: flags.IOptionFlag; due: flags.IOptionFlag; "delete-priority": import("@oclif/parser/lib/flags").IBooleanFlag; "delete-projects": import("@oclif/parser/lib/flags").IBooleanFlag; "delete-contexts": import("@oclif/parser/lib/flags").IBooleanFlag; "delete-due": import("@oclif/parser/lib/flags").IBooleanFlag; }; static strict: boolean; static args: { name: string; description: string; }[]; run(): Promise; }