export interface User 
{
    user_id: Key | null | undefined;
    is_follow: string;
    is_me: string;
    follow_user_id: string;
    first_name: string;
    last_name?: string;
    username: string;
    profile_pic?: string;
}