export declare type ActivityConfirmationModelView = { id: string; projectCode: string; elementCode: string; networkCode: string; partCode: string; stepCode: string; userNumber: string; approver: string | null; createdAt: Date; updatedAt: Date; }; declare type ActivityConfirmationModelGet = { projectCode: string; elementCode: string; networkCode: string; partCode: string; stepCode: string; }; declare type ActivityConfirmationModelQuery = { projectCode: string; elementCode?: string; networkCode?: string; partCode?: string; stepCode?: string; }; declare type ActivityConfirmationModelUpload = { projectCode: string; elementCode: string; networkCode: string; partCode: string; stepCode: string; file: File; }; declare function check(model: ActivityConfirmationModelGet): Promise; declare function get(model: ActivityConfirmationModelGet): Promise; declare function getAllByParam(model: ActivityConfirmationModelQuery): Promise; declare function upload(model: ActivityConfirmationModelUpload): Promise; declare function download(projectCode: string, elementCode: string, networkCode: string): Promise; declare function downloadCountReport(projectCode: string): Promise; declare function approve(model: ActivityConfirmationModelGet): Promise; declare function reject(model: ActivityConfirmationModelGet): Promise; declare const activityConfirmationService: { check: typeof check; get: typeof get; getAllByParam: typeof getAllByParam; upload: typeof upload; download: typeof download; downloadCountReport: typeof downloadCountReport; approve: typeof approve; reject: typeof reject; }; export default activityConfirmationService;