export interface UpdateLotForm { lotId: string | number; lotName: string; lotTypeId: string | number; lotStatusId: string | number; mapId: string | number; mapKey: string; lotLatitude: string; lotLongitude: string; lotTypeFieldIds?: string; [lotFieldValue_lotTypeFieldId: string]: unknown; } export default function updateLot(lotForm: UpdateLotForm, user: User): Promise; export declare function updateLotStatus(lotId: number | string, lotStatusId: number | string, user: User): Promise;