import { ApiInspectReportEntry, ApiInspectReportEntryArgument } from "./api_inspect_report_entry"; import type ApiUser from "./api_user"; import { DateLike, ModifyPartial } from "type_aliases"; export declare type ApiInspectReportArgument = ModifyPartial; }>; export declare class ApiInspectReport { constructor({ id, firebaseProjectId, name, entries, createdBy, createdAt }: ApiInspectReportArgument); readonly id: number; readonly firebaseProjectId: string; name: string; entries: ApiInspectReportEntry[]; createdAt?: number; readonly createdBy?: ApiUser; } export default ApiInspectReport;