import { User } from '../users/user.entity';
export declare class CreatorProfile {
    id: string;
    user: User;
    full_name: string;
    username: string;
    category: string;
    location: string;
    follower_range: string;
    social_links: string;
    bio: string;
    avatar_url: string;
    created_at: Date;
    updated_at: Date;
}
