import type { KnownParserName } from '../r-bridge/parser';
export interface SingleBenchmarkCliOptions {
    verbose: boolean;
    help: boolean;
    input?: string;
    'file-id'?: number;
    'run-num'?: number;
    slice: string;
    output?: string;
    parser: KnownParserName;
}
