import { GlideElement } from "../types/GlideElement"; import { GlideRecord } from "../types/GlideRecord"; export declare class ChannelUserProfileUtils { doesInteractionChangeTriggerProfileUpdate( current?: GlideRecord, previous?: GlideRecord ): boolean; getUserElementForInteraction(interactionGR?: GlideRecord): GlideElement; updateInteractionFromUserProfile(interactionGR?: GlideRecord): void; updateUserProfileForInteraction(interactionGR?: GlideRecord): void; updateUserProfileFromChannelUserID(channelUserProfileGR?: GlideRecord): void; constructor(); }