import { ReportFields } from './reportFields'; import { ReportRows } from './reportRows'; export declare class ReportWithRow { 'reportID'?: string; 'reportName'?: string; 'reportTitle'?: string; 'reportType'?: string; 'reportTitles'?: Array; 'reportDate'?: string; 'rows'?: Array; 'updatedDateUTC'?: Date; 'fields'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }