export interface IWelcomeMessage { /** * Should we show the welcome message */ enabled: boolean; /** * The title of the assistant. */ title: string; /** * A short description of the assistant to help frame the conversation. */ description: string; /** * An image URL that identifies the assistant, such as a brand icon. */ avatar?: null | string; } export declare const WelcomeMessage: React.FC; //# sourceMappingURL=index.d.ts.map