import { Command, flags } from '@heroku-cli/command'; interface Config { [key: string]: string; } export declare function stringToConfig(s: string): Config; 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; } export {};