import { BaseEntity } from "./base.entity";
export declare enum CategoryEmum {
    BUSINESS = "BUSINESS",
    FREELANCER = "FREELANCER"
}
export declare class Lead extends BaseEntity {
    name: string;
    mobileCode: string;
    mobile: string;
    email: string;
    description: string;
    category: CategoryEmum;
}
