import type { Command } from 'commander';
export type CommandOptions = {
    header?: string[];
    install?: boolean;
    react?: boolean;
    subscriptions?: string;
    target?: string;
    typescript?: boolean;
    watch: boolean;
};
export declare const addCommand: (command: Command) => Command;
