import Api from './Api'; export interface IProjectReportCreate { ccList?: string[]; description: string; projectId: string; receiverList: string[]; reportUnitList: any[]; title: string; } export interface IProjectReportUpdate extends IProjectReportCreate { objectVersionNumber: number; } declare class ProjectReportApi extends Api { get prefix(): string; load(): any; create(data: IProjectReportCreate): any; update(reportId: string, data: IProjectReportUpdate): any; getById(reportId: string): any; delete(reportId: string): any; send(reportId: string, html: string): any; } declare const projectReportApi: ProjectReportApi; declare const projectReportApiConfig: ProjectReportApi; export { projectReportApi, projectReportApiConfig };