import { IReportService } from './IReportService'; import { EntitySchema } from 'fusefx-modeldescription'; import { ReportDefinition } from './ReportDefinition'; export declare class ReportServiceConnector implements IReportService { private _Url; constructor(url: string); generateReport(report: ReportDefinition, sortedBy: string[], limit: number, skip: number): Promise<{ page: { [key: string]: any; }[]; totalCount: number; }>; getEntitySchema(): Promise; }