import { CliArgs } from './command-line-args';
export interface ReporterOption {
    noisyTags: string[];
    verbose: boolean;
    args?: Partial<CliArgs>;
}
export declare const defaultOptions: ReporterOption;
