declare class PackageVersionReportCommand {
    static QUERY: string;
    static QUERY_VERBOSE: string;
    [property: string]: any;
    constructor();
    execute(context: any): Promise<any>;
    _execute(context: any): Promise<any>;
    /**
     * indicates that the human readable message should be tabular
     *
     * @returns {[{}...]}
     */
    getColumnData(): {
        key: string;
        label: string;
    }[];
}
export = PackageVersionReportCommand;
