import { IReportDefinition } from '../ReportDefinitionService/ReportDefinition'; import { IReport, IClientReportService, IReportDownloadOptions } from '../ReportService'; export declare abstract class ClientReportService implements IClientReportService { private options?; get(reportDefinition: Partial): Promise; setOptions(options: Partial): void; getOptions(): Partial | undefined; }