export interface BenchmarkCommandOption { label: string; doDiff: boolean; } export declare class BenchmarkCommand { readonly label?: string; readonly doDiff: boolean; constructor(option?: Partial); get doBenchmark(): boolean; }