import { LeadStatus } from "src/common/constant/enum.constant";
declare class LocationDto {
    readonly type: string;
    readonly coordinates: number[];
}
export declare class CreateLeadDto {
    firstName: string;
    lastName?: string;
    email?: string;
    phoneNumber?: string;
    status: LeadStatus;
    fenceType?: string;
    fenceHeight?: string;
    visitSchedule?: Date[];
    street: string;
    city: string;
    state: string;
    country: string;
    postalCode: string;
    description: string;
    assignTo?: string;
    location?: LocationDto;
}
export {};
