interface AddWorkOrderCommentForm { workOrderId: string; workOrderComment: string; } export declare function addWorkOrderComment(workOrderCommentForm: AddWorkOrderCommentForm, user: User): Promise; export default addWorkOrderComment;