import { Command, flags } from '@heroku-cli/command'; export default class LabsDisable extends Command { static description: string; static args: { name: string; }[]; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; confirm: flags.IOptionFlag; }; run(): Promise; disableFeature(feature: string, app?: string): Promise; }