interface AddLotCommentForm { lotId: string; lotComment: string; } export declare function addLotComment(lotCommentForm: AddLotCommentForm, user: User): Promise; export default addLotComment;