import { ComplexType } from '@prisma/client';
export declare class CreateComplexDto {
    name: string;
    type: ComplexType;
    address?: string;
    city?: string;
    country?: string;
    gpsLat?: number;
    gpsLng?: number;
}
