import { Command, flags as Flags } from '@heroku-cli/command'; export default class Search extends Command { static description: string; static flags: { namespace: Flags.IOptionFlag; name: Flags.IOptionFlag; description: Flags.IOptionFlag; }; static args: { name: string; description: string; }[]; run(): Promise; }