/**
 * The summarizer intends to post-process and summarize the results of
 * * the benchmark tool, and
 * * the statistics extraction.
 *
 * @module
 */
export interface SummarizerCliOptions {
    verbose: boolean;
    help: boolean;
    'ultimate-only': boolean;
    categorize: boolean;
    input: string;
    type: string;
    output?: string;
    graph?: boolean;
    'project-skip': number;
}
