import type * as recordTypes from "../../types/recordTypes"; interface AddLotOccupancyCommentForm { lotOccupancyId: string | number; lotOccupancyCommentDateString?: string; lotOccupancyCommentTimeString?: string; lotOccupancyComment: string; } export declare const addLotOccupancyComment: (commentForm: AddLotOccupancyCommentForm, requestSession: recordTypes.PartialSession) => number; export default addLotOccupancyComment;