import { ISubscriptionCompanyProfile } from '../interfaces/i-subscription-profile';
export declare class SubscriptionCompanyProfileEntity implements ISubscriptionCompanyProfile {
    containerId: string | null;
    doc: string | null;
    docType: string | null;
    id: string | null;
    imageUrl: string | null;
    name: string | null;
    constructor(data?: Partial<SubscriptionCompanyProfileEntity>);
}
