import { AnyTurn, LogicalScoredSuite } from './interfaces'; export interface FormatScoredSuiteOptions { showDetails: boolean; showPassing: boolean; showFailing: boolean; showMeasures: boolean; showBySuite: boolean; } export declare function formatScoredSuite(fragments: string[], scored: LogicalScoredSuite, options?: FormatScoredSuiteOptions): string[];