import { LotType } from '@prisma/client';
export declare class CreateLotDto {
    spatialUnitId: string;
    lotNumber: string;
    type: LotType;
    surfaceM2?: number;
    tantiemesGeneral?: number;
}
