import { MutationScoreThresholds } from 'stryker-api/core';
import { ScoreResult } from 'stryker-api/report';
/**
 * Represents a clear text table for mutation score
 */
export default class ClearTextScoreTable {
    private readonly score;
    private readonly columns;
    constructor(score: ScoreResult, thresholds: MutationScoreThresholds);
    private drawBorder;
    private drawHeader;
    private drawRow;
    private drawValues;
    /**
     * Returns a string with the score results drawn in a table.
     */
    draw(): string;
}
//# sourceMappingURL=ClearTextScoreTable.d.ts.map