declare class VisualReportGenerator {
    directoryPath: string;
    constructor({ directoryPath }: {
        directoryPath: string;
    });
    generate(): void;
    private readJsonFilesRecursively;
    private readDirectory;
    private readJsonFile;
    private groupAndSortTestData;
    private writeJsonToFile;
}
export default VisualReportGenerator;
//# sourceMappingURL=reporter.d.ts.map