import { User } from '../users/user.entity';
export declare class ManagerProfile {
    id: string;
    user: User;
    full_name: string;
    bio: string;
    rating: number;
    avatar_url: string;
    location: string;
    specialty: string;
    experience_years: number;
    blacklisted_brand_ids: string[];
    created_at: Date;
    updated_at: Date;
}
