import { ProfileView } from '../providers/user-profile-context'; export default function useUserProfile(): { activeProfileView: ProfileView | null; openProfile: () => void; closeProfile: () => void; setProfileView: (view: ProfileView | null) => void; }; //# sourceMappingURL=use-user-profile.d.ts.map