import { MixedContentContext } from '../../editor/widget-framework/mixed-content-context'; export declare enum DisplayMode { Modal = "Modal", Inline = "Inline" } export declare class SitefinityAssistantEntity { AssistantApiKey: string | null; Nickname: string; GreetingMessage: string | null; AssistantAvatar?: MixedContentContext; DisplayMode: DisplayMode; OpeningChatIcon?: MixedContentContext; ClosingChatIcon?: MixedContentContext; ContainerId: string; PlaceholderText: string; Notice: string; SfWidgetLabel: string; CssClass: string | null; CustomCss: string | null; Attributes?: { [key: string]: Array<{ Key: string; Value: string; }>; }; }