import type { OptionDefinition } from 'command-line-usage';
/**
 * This interface describes options, that every script *must* provide.
 */
export interface CommonOptions {
    /** Enables the most verbose logging option available. */
    verbose: boolean;
    /**
     * Shows the respective help including usage examples,
     * see {@link processCommandLineArgs} or {@link helpForOptions} for more information.
     */
    help: boolean;
}
export declare const benchmarkOptions: OptionDefinition[];
export declare const benchmarkHelperOptions: OptionDefinition[];
export declare const exportQuadsOptions: OptionDefinition[];
export declare const slicerOptions: OptionDefinition[];
export declare const statisticOptions: OptionDefinition[];
export declare const statisticHelperOptions: OptionDefinition[];
export declare const summarizerOptions: OptionDefinition[];
