import AbstractListReporter, { checkFilesMap } from './abstract-list'; import { SequenceId } from '../services/abstract-check-runner'; type GithubMdBuilderOptions = { testSessionId?: string; numChecks: number; runLocation: string; checkFilesMap: checkFilesMap; }; export declare class GithubMdBuilder { testSessionId?: string; numChecks: number; runLocation: string; checkFilesMap: checkFilesMap; subHeader: Array; tableHeaders: Array; extraTableHeadersWithLinks: Array; tableRows: Array; hasFilenames: boolean; readonly header: string; readonly tableSeparatorFiller: string; readonly tableSeparator: string; constructor(options: GithubMdBuilderOptions); render(): string; } export default class GithubReporter extends AbstractListReporter { onBegin(checks: Array<{ check: any; sequenceId: SequenceId; }>, testSessionId?: string): void; onEnd(): void; } export {};