@mxmweb/aichat 1.2.6 → 1.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
- import { default as React } from 'react';
2
1
  import { AiChatStyles } from '../../../../components/defaultStyleSet';
3
- declare function GientechNewChatWelcome(props: {
2
+ interface GientechNewChatWelcomeProps {
4
3
  assistantList: any[];
5
4
  eventsEmit?: (type: string, data?: any) => void;
6
- defaultSelect?: string;
7
5
  styles?: AiChatStyles;
8
- }): import("react/jsx-runtime").JSX.Element;
9
- declare const _default: React.MemoExoticComponent<typeof GientechNewChatWelcome>;
10
- export default _default;
6
+ selectedId?: string;
7
+ onSelectAssistant?: (id: string) => void;
8
+ }
9
+ declare function GientechNewChatWelcome(props: GientechNewChatWelcomeProps): import("react/jsx-runtime").JSX.Element;
10
+ export default GientechNewChatWelcome;