export type ProfileView = 'sign-in' | 'preferences' | 'register' | 'forgotten-password' | 'password-reset' | 'saved-properties' | 'saved-searches'; type UserProfile = { activeProfileView: ProfileView | null; setActiveProfileView: (view: ProfileView | null) => void; }; declare const UserProfileContext: import("react").Context; export default UserProfileContext; //# sourceMappingURL=user-profile-context.d.ts.map