import { Command, flags } from '@heroku-cli/command'; export default class ConfigEdit extends Command { static description: string; static examples: string[]; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; }; static args: { name: string; optional: boolean; description: string; }[]; app: string; run(): Promise; private fetchLatestConfig; private diffPrompt; private verifyUnchanged; private updateConfig; }