import { AddressEntity, PaymentProviderEntity } from '../../general';
import { EDocType } from '../../general/enums';
import { IPartner } from '../interfaces';
export declare class PartnerEntity implements IPartner {
    active: boolean;
    address: AddressEntity;
    doc: string;
    docType: EDocType;
    email: string;
    fullName: string;
    id: string;
    imageUrl: string | null;
    internationalCode: string;
    level: number;
    logoUrl?: string;
    name: string;
    paymentProvider: PaymentProviderEntity;
    phoneNumber: string;
    sandbox: boolean;
    tags: string[];
    updatedAt: Date;
    version: string;
    constructor(data?: Partial<PartnerEntity>);
}
