import { Command, flags } from '@heroku-cli/command'; export declare const sleep: (time: number) => Promise; export default class Promote extends Command { static description: string; static examples: string[]; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; to: flags.IOptionFlag; }; run(): Promise; }