import type * as recordTypes from "../../types/recordTypes"; interface UpdateLotTypeForm { lotTypeId: number | string; lotType: string; } export declare const updateLotType: (lotTypeForm: UpdateLotTypeForm, requestSession: recordTypes.PartialSession) => boolean; export default updateLotType;