export interface ILead {
    [key: string]: any;
    Company?: string;
    LastName?: string;
    Email?: string;
    Fax?: number;
    City?: string;
    Phone?: string;
    State?: string;
    Title?: string;
    Jigsaw?: string;
    Rating?: string;
    Status?: string;
    Street?: string;
    Country?: string;
    OwnerId?: string;
    Website?: string;
    Industry?: string;
    FirstName?: string;
    LeadSource?: string;
    PostalCode?: string;
    Salutation?: string;
    Description?: string;
    AnnualRevenue?: number;
    IsUnreadByOwner?: boolean;
    NumberOfEmployees?: number;
    MobilePhone?: string;
    HasOptedOutOfEmail?: boolean;
    HasOptedOutOfFax?: boolean;
}
//# sourceMappingURL=LeadInterface.d.ts.map