import type { AxiosInstance } from 'axios'; export interface TestSessionErrorGroup { id: string; projectId: string; environments: string[]; errorHash: string; rawErrorMessage: string | null; cleanedErrorMessage: string; firstSeen: string; lastSeen: string; archivedUntilNextEvent: boolean; } declare class TestSessionErrorGroups { api: AxiosInstance; constructor(api: AxiosInstance); get(id: string): Promise>; } export default TestSessionErrorGroups;