import { AddressEntity } from '../../general';
import { EDocType } from '../../general/enums';
import { IDeveloper } from '../interfaces';
export declare class DeveloperEntity implements IDeveloper {
    active: boolean;
    address: AddressEntity | null;
    createdAt: Date;
    doc: string;
    docType: EDocType;
    email: string | null;
    id: string;
    imageUrl: string | null;
    internationalCode: string;
    name: string;
    phoneNumber: string;
    sandbox: boolean;
    slug: string;
    tags: string[];
    updatedAt: Date;
    constructor(data?: Partial<DeveloperEntity>);
}
