import { Command } from '@oclif/command';
declare class CreateTrelloPowerup extends Command {
    static description: string;
    static flags: {
        version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
    };
    static args: ({
        name: string;
        required: boolean;
        description: string;
        default: undefined;
        options?: undefined;
    } | {
        name: string;
        required: boolean;
        description: string;
        default: string;
        options: string[];
    })[];
    run(): Promise<void>;
}
export = CreateTrelloPowerup;
