import { UserPreference } from './user-preference'; import { NewUserPreference, UserPreferencePatch } from './user-preference-type'; export declare class UserPreferenceMutation { createUserPreference(preference: NewUserPreference, context: ResolverContext): Promise; updateUserPreference(id: string, patch: UserPreferencePatch, context: ResolverContext): Promise; updateMyUserPreference(key: string, preference: { [key: string]: any; }, context: any): Promise; deleteMyUserPreference(key: string, element: string, context: ResolverContext): Promise; deleteUserPreference(id: string, context: ResolverContext): Promise; deleteUserPreferences(ids: string[], context: ResolverContext): Promise; }