import { UserPreference } from './UserPreference';
export declare type Settings = {
    sendEmailNotifications: boolean;
    markEmailedMessagesAsRead: boolean;
};
export declare type UserProfile = {
    ownerId: string;
    uri?: string;
    etag?: string;
    firstName: string;
    lastName: string;
    email?: string;
    emails?: string[];
    openIds?: string[];
    userName: string;
    displayName?: string;
    rStudioUrl?: string;
    summary?: string;
    position?: string;
    location?: string;
    industry?: string;
    company?: string;
    profilePicureFileHandleId?: string;
    url?: string;
    teamName?: string;
    notificationSettings?: Settings;
    preferences?: UserPreference[];
    createdOn?: string;
    clientPreSignedURL?: string;
};
