import ApiMasterformat from "./api_masterformat"; import { DateLike } from "type_aliases"; /** @deprecated Use ApiMasterformatProgress **/ export declare class ApiProjectMasterformatProgress { constructor(masterformat?: ApiMasterformat, percentComplete?: number, scanDate?: DateLike, createdAt?: DateLike); masterformat: ApiMasterformat | null; percentComplete: number | null; scanDate: number | null | DateLike; createdAt: number | null | DateLike; } export default ApiProjectMasterformatProgress;