import { User } from '../users/user.entity';
export declare class BrandProfile {
    id: string;
    user: User;
    company_name: string;
    industry: string;
    contact_person: string;
    contact_email: string;
    description: string;
    logo_url: string;
    tin_number: string;
    manager: User;
    created_at: Date;
    updated_at: Date;
}
