export declare class TrackerImportValidationReport { id: string; uid?: string; type: 'ERROR' | 'WARNING'; errorCode: string; objectType: string; message: string; summary: string; constructor(report: Partial); getSummary(): string; static setReports(reportResponse: Record[]>): TrackerImportValidationReport[]; }