import { EDocType } from '../../general';
import { ISubscriptionCustomerProfile } from '../interfaces/i-subscription-customer';
export declare class SubscriptionCustomerProfileEntity implements ISubscriptionCustomerProfile {
    doc: string | null;
    docType: EDocType;
    email: string | null;
    id: string | null;
    imageUrl: string | null;
    name: string | null;
    phoneNumber: string | null;
    uid: string | null;
    constructor(data?: Partial<SubscriptionCustomerProfileEntity>);
}
