import ApiInspectReportEntryElement from "./api_inspect_report_entry_element"; import type ApiUser from "./api_user"; import type ApiCloudFile from "./api_cloud_file"; import type ApiView from "./api_view"; import type { DateLike, ModifyPartial } from "type_aliases"; export declare type ApiInspectReportEntryArgument = ModifyPartial[]; }>; export declare class ApiInspectReportEntry { constructor({ id, reportId, name, view, screenshot, minimapFile, zoomedMinimapFile, elements, createdBy, createdAt, obstructingTrades, obstructedTrades }: ApiInspectReportEntryArgument); readonly id: number; readonly reportId: number; name: string; view: ApiView; screenshot: ApiCloudFile; minimapFile: ApiCloudFile; zoomedMinimapFile: ApiCloudFile; elements: ApiInspectReportEntryElement[]; obstructedTrades?: string[]; obstructingTrades?: string[]; createdAt?: number; createdBy?: ApiUser; } export default ApiInspectReportEntry;