@botpress/webchat 0.5.1 → 1.0.1

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.
Files changed (191) hide show
  1. package/dist/App.d.ts +10 -0
  2. package/dist/Utils/colors.d.ts +18 -0
  3. package/dist/Utils/eventEmitter.d.ts +12 -0
  4. package/dist/Utils/index.d.ts +2 -0
  5. package/dist/client/MessagingClient.d.ts +27 -0
  6. package/dist/client/adapters/Audio.d.ts +19 -0
  7. package/dist/client/adapters/Card.d.ts +188 -0
  8. package/dist/client/adapters/Carousel.d.ts +147 -0
  9. package/dist/client/adapters/Choice.d.ts +45 -0
  10. package/dist/client/adapters/Dropdown.d.ts +46 -0
  11. package/dist/client/adapters/File.d.ts +19 -0
  12. package/dist/client/adapters/Image.d.ts +19 -0
  13. package/dist/client/adapters/Location.d.ts +27 -0
  14. package/dist/client/adapters/Message.d.ts +433 -0
  15. package/dist/client/adapters/Text.d.ts +20 -0
  16. package/dist/client/adapters/Utils.d.ts +5 -0
  17. package/dist/client/adapters/Video.d.ts +19 -0
  18. package/dist/client/adapters/Voice.d.ts +15 -0
  19. package/dist/client/adapters/index.d.ts +12 -0
  20. package/dist/client/index.d.ts +2 -0
  21. package/dist/components/Avatar.d.ts +6 -0
  22. package/dist/components/Block.d.ts +4 -0
  23. package/dist/components/Composer.d.ts +12 -14
  24. package/dist/components/Container.d.ts +2 -12
  25. package/dist/components/Header.d.ts +36 -26
  26. package/dist/components/LoadingIndicator.d.ts +2 -0
  27. package/dist/components/Message.d.ts +7 -0
  28. package/dist/components/MessageList.d.ts +2 -0
  29. package/dist/components/Modal.d.ts +17 -0
  30. package/dist/components/RestartConversation.d.ts +5 -0
  31. package/dist/components/Webchat.d.ts +6 -0
  32. package/dist/components/dev-tools/DevTools.d.ts +1 -0
  33. package/dist/components/dev-tools/configuration.d.ts +2 -0
  34. package/dist/components/dev-tools/helpers.d.ts +5 -0
  35. package/dist/components/index.d.ts +12 -0
  36. package/dist/components/renderers/Audio.d.ts +3 -0
  37. package/dist/components/renderers/Bubble.d.ts +5 -0
  38. package/dist/components/renderers/Button.d.ts +4 -0
  39. package/dist/components/renderers/Carousel.d.ts +3 -0
  40. package/dist/components/renderers/Column.d.ts +5 -0
  41. package/dist/components/renderers/Dropdown.d.ts +5 -0
  42. package/dist/components/renderers/File.d.ts +3 -0
  43. package/dist/components/renderers/Image.d.ts +3 -0
  44. package/dist/components/renderers/Location.d.ts +3 -0
  45. package/dist/components/renderers/Row.d.ts +5 -0
  46. package/dist/components/renderers/Text.d.ts +4 -0
  47. package/dist/components/renderers/Video.d.ts +3 -0
  48. package/dist/components/renderers/index.d.ts +2 -0
  49. package/dist/contexts/ComposerContext.d.ts +8 -0
  50. package/dist/contexts/MessageContext.d.ts +8 -0
  51. package/dist/contexts/ModalContext.d.ts +14 -0
  52. package/dist/contexts/WebchatContext.d.ts +56 -0
  53. package/dist/contexts/index.d.ts +4 -0
  54. package/dist/hooks/index.d.ts +3 -0
  55. package/dist/hooks/useImageSize.d.ts +2 -0
  56. package/dist/hooks/useRefresh.d.ts +10 -0
  57. package/dist/hooks/useWebchatStore.d.ts +30 -0
  58. package/dist/index.d.ts +3 -17
  59. package/dist/index.js +43569 -48
  60. package/dist/index.umd.cjs +702 -0
  61. package/dist/main.d.ts +11 -13
  62. package/dist/providers/ModalProvider.d.ts +8 -0
  63. package/dist/providers/WebchatProvider.d.ts +13 -0
  64. package/dist/providers/index.d.ts +2 -0
  65. package/dist/schemas/index.d.ts +1 -0
  66. package/dist/schemas/theme.d.ts +3371 -0
  67. package/dist/services/clipboard.d.ts +1 -0
  68. package/dist/services/images.d.ts +2 -0
  69. package/dist/services/index.d.ts +3 -0
  70. package/dist/services/toast.d.ts +17 -0
  71. package/dist/themes/dawn.d.ts +2 -0
  72. package/dist/themes/duskTheme.d.ts +2 -0
  73. package/dist/themes/eggplant.d.ts +2 -0
  74. package/dist/themes/galaxy.d.ts +2 -0
  75. package/dist/themes/index.d.ts +6 -0
  76. package/dist/themes/midnight.d.ts +2 -0
  77. package/dist/themes/prism.d.ts +2 -0
  78. package/dist/twind.config.d.ts +9 -0
  79. package/dist/types/block-type.d.ts +93 -0
  80. package/dist/types/image.d.ts +11 -0
  81. package/dist/types/index.d.ts +2 -0
  82. package/package.json +61 -49
  83. package/README.md +0 -41
  84. package/assets/fonts/roboto/roboto.woff2 +0 -0
  85. package/assets/fonts/roboto/roboto500.woff2 +0 -0
  86. package/assets/fonts/roboto.css +0 -128
  87. package/assets/notification.mp3 +0 -0
  88. package/dist/components/Composer.js +0 -118
  89. package/dist/components/Container.js +0 -62
  90. package/dist/components/ConversationList.d.ts +0 -10
  91. package/dist/components/ConversationList.js +0 -41
  92. package/dist/components/Footer.d.ts +0 -3
  93. package/dist/components/Footer.js +0 -21
  94. package/dist/components/Header.js +0 -181
  95. package/dist/components/VoiceRecorder.d.ts +0 -10
  96. package/dist/components/VoiceRecorder.js +0 -137
  97. package/dist/components/common/Avatar/index.d.ts +0 -9
  98. package/dist/components/common/Avatar/index.js +0 -13
  99. package/dist/components/common/BotInfo/index.d.ts +0 -10
  100. package/dist/components/common/BotInfo/index.js +0 -107
  101. package/dist/components/common/BotInfo/style.scss +0 -88
  102. package/dist/components/common/ConfirmDialog/index.d.ts +0 -11
  103. package/dist/components/common/ConfirmDialog/index.js +0 -78
  104. package/dist/components/common/ConfirmDialog/style.module.scss +0 -48
  105. package/dist/components/common/Dialog/index.d.ts +0 -17
  106. package/dist/components/common/Dialog/index.js +0 -57
  107. package/dist/components/common/Dialog/style.module.scss +0 -29
  108. package/dist/components/common/ToolTip/index.d.ts +0 -10
  109. package/dist/components/common/ToolTip/index.js +0 -163
  110. package/dist/components/common/ToolTip/style.module.scss +0 -108
  111. package/dist/components/common/ToolTip/utils.d.ts +0 -15
  112. package/dist/components/common/ToolTip/utils.js +0 -78
  113. package/dist/components/common/variables.scss +0 -38
  114. package/dist/components/messages/InlineFeedback.d.ts +0 -11
  115. package/dist/components/messages/InlineFeedback.js +0 -56
  116. package/dist/components/messages/Message.d.ts +0 -11
  117. package/dist/components/messages/Message.js +0 -106
  118. package/dist/components/messages/MessageGroup.d.ts +0 -23
  119. package/dist/components/messages/MessageGroup.js +0 -63
  120. package/dist/components/messages/MessageList.d.ts +0 -10
  121. package/dist/components/messages/MessageList.js +0 -148
  122. package/dist/core/api.d.ts +0 -23
  123. package/dist/core/api.js +0 -117
  124. package/dist/core/constants.d.ts +0 -14
  125. package/dist/core/constants.js +0 -29
  126. package/dist/core/socket.d.ts +0 -14
  127. package/dist/core/socket.js +0 -57
  128. package/dist/declaration.d.ts +0 -2
  129. package/dist/declaration.js +0 -1
  130. package/dist/fonts/roboto.d.ts +0 -4
  131. package/dist/fonts/roboto.js +0 -9
  132. package/dist/globals.d.ts +0 -7
  133. package/dist/globals.js +0 -2
  134. package/dist/icons/Add.d.ts +0 -6
  135. package/dist/icons/Add.js +0 -10
  136. package/dist/icons/Cancel.d.ts +0 -5
  137. package/dist/icons/Cancel.js +0 -10
  138. package/dist/icons/Chat.d.ts +0 -6
  139. package/dist/icons/Chat.js +0 -9
  140. package/dist/icons/Close.d.ts +0 -3
  141. package/dist/icons/Close.js +0 -10
  142. package/dist/icons/Delete.d.ts +0 -3
  143. package/dist/icons/Delete.js +0 -11
  144. package/dist/icons/Download.d.ts +0 -3
  145. package/dist/icons/Download.js +0 -10
  146. package/dist/icons/Email.d.ts +0 -3
  147. package/dist/icons/Email.js +0 -8
  148. package/dist/icons/Information.d.ts +0 -3
  149. package/dist/icons/Information.js +0 -12
  150. package/dist/icons/List.d.ts +0 -3
  151. package/dist/icons/List.js +0 -15
  152. package/dist/icons/Microphone.d.ts +0 -5
  153. package/dist/icons/Microphone.js +0 -12
  154. package/dist/icons/Phone.d.ts +0 -3
  155. package/dist/icons/Phone.js +0 -8
  156. package/dist/icons/Reload.d.ts +0 -3
  157. package/dist/icons/Reload.js +0 -10
  158. package/dist/icons/ThumbsDown.d.ts +0 -3
  159. package/dist/icons/ThumbsDown.js +0 -11
  160. package/dist/icons/ThumbsUp.d.ts +0 -3
  161. package/dist/icons/ThumbsUp.js +0 -11
  162. package/dist/icons/Website.d.ts +0 -3
  163. package/dist/icons/Website.js +0 -8
  164. package/dist/main.js +0 -336
  165. package/dist/store/composer.d.ts +0 -17
  166. package/dist/store/composer.js +0 -98
  167. package/dist/store/index.d.ts +0 -89
  168. package/dist/store/index.js +0 -604
  169. package/dist/store/view.d.ts +0 -61
  170. package/dist/store/view.js +0 -365
  171. package/dist/translations/ar.json +0 -30
  172. package/dist/translations/de.json +0 -32
  173. package/dist/translations/en.json +0 -40
  174. package/dist/translations/es.json +0 -19
  175. package/dist/translations/fr.json +0 -40
  176. package/dist/translations/index.d.ts +0 -9
  177. package/dist/translations/index.js +0 -95
  178. package/dist/translations/it.json +0 -38
  179. package/dist/translations/pt.json +0 -19
  180. package/dist/translations/ru.json +0 -24
  181. package/dist/translations/uk.json +0 -24
  182. package/dist/typings.d.ts +0 -410
  183. package/dist/typings.js +0 -2
  184. package/dist/utils/analytics.d.ts +0 -5
  185. package/dist/utils/analytics.js +0 -37
  186. package/dist/utils/index.d.ts +0 -3
  187. package/dist/utils/index.js +0 -27
  188. package/dist/utils/storage.d.ts +0 -16
  189. package/dist/utils/storage.js +0 -129
  190. package/dist/utils/webchatEvents.d.ts +0 -2
  191. package/dist/utils/webchatEvents.js +0 -14
@@ -0,0 +1,3371 @@
1
+ import { CSSProperties } from 'react';
2
+ import { z } from 'zod';
3
+ export declare const BlocksSchema: z.ZodObject<{
4
+ button: z.ZodOptional<z.ZodObject<{
5
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
6
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ className?: string | undefined;
9
+ style?: CSSProperties | undefined;
10
+ }, {
11
+ className?: string | undefined;
12
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
13
+ }>>;
14
+ text: z.ZodRecord<z.ZodEnum<["heading1", "heading2", "heading3", "text", "horizontalRule", "link", "italic", "bold", "orderedList", "unorderedList", "listItem", "lineBreak", "pre"]>, z.ZodOptional<z.ZodObject<{
15
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
16
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
17
+ }, "strip", z.ZodTypeAny, {
18
+ className?: string | undefined;
19
+ style?: CSSProperties | undefined;
20
+ }, {
21
+ className?: string | undefined;
22
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
23
+ }>>>;
24
+ image: z.ZodOptional<z.ZodObject<{
25
+ image: z.ZodOptional<z.ZodObject<{
26
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
27
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
28
+ }, "strip", z.ZodTypeAny, {
29
+ className?: string | undefined;
30
+ style?: CSSProperties | undefined;
31
+ }, {
32
+ className?: string | undefined;
33
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
34
+ }>>;
35
+ placeholder: z.ZodOptional<z.ZodObject<{
36
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
37
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ className?: string | undefined;
40
+ style?: CSSProperties | undefined;
41
+ }, {
42
+ className?: string | undefined;
43
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
44
+ }>>;
45
+ }, "strip", z.ZodTypeAny, {
46
+ image?: {
47
+ className?: string | undefined;
48
+ style?: CSSProperties | undefined;
49
+ } | undefined;
50
+ placeholder?: {
51
+ className?: string | undefined;
52
+ style?: CSSProperties | undefined;
53
+ } | undefined;
54
+ }, {
55
+ image?: {
56
+ className?: string | undefined;
57
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
58
+ } | undefined;
59
+ placeholder?: {
60
+ className?: string | undefined;
61
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
62
+ } | undefined;
63
+ }>>;
64
+ audio: z.ZodOptional<z.ZodObject<{
65
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
66
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
67
+ }, "strip", z.ZodTypeAny, {
68
+ className?: string | undefined;
69
+ style?: CSSProperties | undefined;
70
+ }, {
71
+ className?: string | undefined;
72
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
73
+ }>>;
74
+ video: z.ZodOptional<z.ZodObject<{
75
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
76
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
77
+ }, "strip", z.ZodTypeAny, {
78
+ className?: string | undefined;
79
+ style?: CSSProperties | undefined;
80
+ }, {
81
+ className?: string | undefined;
82
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
83
+ }>>;
84
+ file: z.ZodOptional<z.ZodObject<{
85
+ container: z.ZodOptional<z.ZodObject<{
86
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
87
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
88
+ }, "strip", z.ZodTypeAny, {
89
+ className?: string | undefined;
90
+ style?: CSSProperties | undefined;
91
+ }, {
92
+ className?: string | undefined;
93
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
94
+ }>>;
95
+ title: z.ZodOptional<z.ZodObject<{
96
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
97
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ className?: string | undefined;
100
+ style?: CSSProperties | undefined;
101
+ }, {
102
+ className?: string | undefined;
103
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
104
+ }>>;
105
+ icon: z.ZodOptional<z.ZodObject<{
106
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
107
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
108
+ }, "strip", z.ZodTypeAny, {
109
+ className?: string | undefined;
110
+ style?: CSSProperties | undefined;
111
+ }, {
112
+ className?: string | undefined;
113
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
114
+ }>>;
115
+ }, "strip", z.ZodTypeAny, {
116
+ container?: {
117
+ className?: string | undefined;
118
+ style?: CSSProperties | undefined;
119
+ } | undefined;
120
+ title?: {
121
+ className?: string | undefined;
122
+ style?: CSSProperties | undefined;
123
+ } | undefined;
124
+ icon?: {
125
+ className?: string | undefined;
126
+ style?: CSSProperties | undefined;
127
+ } | undefined;
128
+ }, {
129
+ container?: {
130
+ className?: string | undefined;
131
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
132
+ } | undefined;
133
+ title?: {
134
+ className?: string | undefined;
135
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
136
+ } | undefined;
137
+ icon?: {
138
+ className?: string | undefined;
139
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
140
+ } | undefined;
141
+ }>>;
142
+ location: z.ZodOptional<z.ZodObject<{
143
+ container: z.ZodOptional<z.ZodObject<{
144
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
145
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
146
+ }, "strip", z.ZodTypeAny, {
147
+ className?: string | undefined;
148
+ style?: CSSProperties | undefined;
149
+ }, {
150
+ className?: string | undefined;
151
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
152
+ }>>;
153
+ title: z.ZodOptional<z.ZodObject<{
154
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
155
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
156
+ }, "strip", z.ZodTypeAny, {
157
+ className?: string | undefined;
158
+ style?: CSSProperties | undefined;
159
+ }, {
160
+ className?: string | undefined;
161
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
162
+ }>>;
163
+ icon: z.ZodOptional<z.ZodObject<{
164
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
165
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
166
+ }, "strip", z.ZodTypeAny, {
167
+ className?: string | undefined;
168
+ style?: CSSProperties | undefined;
169
+ }, {
170
+ className?: string | undefined;
171
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
172
+ }>>;
173
+ }, "strip", z.ZodTypeAny, {
174
+ container?: {
175
+ className?: string | undefined;
176
+ style?: CSSProperties | undefined;
177
+ } | undefined;
178
+ title?: {
179
+ className?: string | undefined;
180
+ style?: CSSProperties | undefined;
181
+ } | undefined;
182
+ icon?: {
183
+ className?: string | undefined;
184
+ style?: CSSProperties | undefined;
185
+ } | undefined;
186
+ }, {
187
+ container?: {
188
+ className?: string | undefined;
189
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
190
+ } | undefined;
191
+ title?: {
192
+ className?: string | undefined;
193
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
194
+ } | undefined;
195
+ icon?: {
196
+ className?: string | undefined;
197
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
198
+ } | undefined;
199
+ }>>;
200
+ column: z.ZodOptional<z.ZodObject<{
201
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
202
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
203
+ }, "strip", z.ZodTypeAny, {
204
+ className?: string | undefined;
205
+ style?: CSSProperties | undefined;
206
+ }, {
207
+ className?: string | undefined;
208
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
209
+ }>>;
210
+ row: z.ZodOptional<z.ZodObject<{
211
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
212
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
213
+ }, "strip", z.ZodTypeAny, {
214
+ className?: string | undefined;
215
+ style?: CSSProperties | undefined;
216
+ }, {
217
+ className?: string | undefined;
218
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
219
+ }>>;
220
+ bubble: z.ZodOptional<z.ZodObject<{
221
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
222
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
223
+ }, "strip", z.ZodTypeAny, {
224
+ className?: string | undefined;
225
+ style?: CSSProperties | undefined;
226
+ }, {
227
+ className?: string | undefined;
228
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
229
+ }>>;
230
+ carousel: z.ZodOptional<z.ZodObject<{
231
+ container: z.ZodOptional<z.ZodObject<{
232
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
233
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
234
+ }, "strip", z.ZodTypeAny, {
235
+ className?: string | undefined;
236
+ style?: CSSProperties | undefined;
237
+ }, {
238
+ className?: string | undefined;
239
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
240
+ }>>;
241
+ slidesContainer: z.ZodOptional<z.ZodObject<{
242
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
243
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
244
+ }, "strip", z.ZodTypeAny, {
245
+ className?: string | undefined;
246
+ style?: CSSProperties | undefined;
247
+ }, {
248
+ className?: string | undefined;
249
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
250
+ }>>;
251
+ backButton: z.ZodOptional<z.ZodObject<{
252
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
253
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
254
+ }, "strip", z.ZodTypeAny, {
255
+ className?: string | undefined;
256
+ style?: CSSProperties | undefined;
257
+ }, {
258
+ className?: string | undefined;
259
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
260
+ }>>;
261
+ nextButton: z.ZodOptional<z.ZodObject<{
262
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
263
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
264
+ }, "strip", z.ZodTypeAny, {
265
+ className?: string | undefined;
266
+ style?: CSSProperties | undefined;
267
+ }, {
268
+ className?: string | undefined;
269
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
270
+ }>>;
271
+ }, "strip", z.ZodTypeAny, {
272
+ container?: {
273
+ className?: string | undefined;
274
+ style?: CSSProperties | undefined;
275
+ } | undefined;
276
+ slidesContainer?: {
277
+ className?: string | undefined;
278
+ style?: CSSProperties | undefined;
279
+ } | undefined;
280
+ backButton?: {
281
+ className?: string | undefined;
282
+ style?: CSSProperties | undefined;
283
+ } | undefined;
284
+ nextButton?: {
285
+ className?: string | undefined;
286
+ style?: CSSProperties | undefined;
287
+ } | undefined;
288
+ }, {
289
+ container?: {
290
+ className?: string | undefined;
291
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
292
+ } | undefined;
293
+ slidesContainer?: {
294
+ className?: string | undefined;
295
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
296
+ } | undefined;
297
+ backButton?: {
298
+ className?: string | undefined;
299
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
300
+ } | undefined;
301
+ nextButton?: {
302
+ className?: string | undefined;
303
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
304
+ } | undefined;
305
+ }>>;
306
+ dropdown: z.ZodOptional<z.ZodObject<{
307
+ button: z.ZodOptional<z.ZodObject<{
308
+ container: z.ZodOptional<z.ZodObject<{
309
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
310
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
311
+ }, "strip", z.ZodTypeAny, {
312
+ className?: string | undefined;
313
+ style?: CSSProperties | undefined;
314
+ }, {
315
+ className?: string | undefined;
316
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
317
+ }>>;
318
+ icon: z.ZodOptional<z.ZodObject<{
319
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
320
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
321
+ }, "strip", z.ZodTypeAny, {
322
+ className?: string | undefined;
323
+ style?: CSSProperties | undefined;
324
+ }, {
325
+ className?: string | undefined;
326
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
327
+ }>>;
328
+ text: z.ZodOptional<z.ZodObject<{
329
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
330
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
331
+ }, "strip", z.ZodTypeAny, {
332
+ className?: string | undefined;
333
+ style?: CSSProperties | undefined;
334
+ }, {
335
+ className?: string | undefined;
336
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
337
+ }>>;
338
+ }, "strip", z.ZodTypeAny, {
339
+ container?: {
340
+ className?: string | undefined;
341
+ style?: CSSProperties | undefined;
342
+ } | undefined;
343
+ icon?: {
344
+ className?: string | undefined;
345
+ style?: CSSProperties | undefined;
346
+ } | undefined;
347
+ text?: {
348
+ className?: string | undefined;
349
+ style?: CSSProperties | undefined;
350
+ } | undefined;
351
+ }, {
352
+ container?: {
353
+ className?: string | undefined;
354
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
355
+ } | undefined;
356
+ icon?: {
357
+ className?: string | undefined;
358
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
359
+ } | undefined;
360
+ text?: {
361
+ className?: string | undefined;
362
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
363
+ } | undefined;
364
+ }>>;
365
+ content: z.ZodOptional<z.ZodObject<{
366
+ container: z.ZodOptional<z.ZodObject<{
367
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
368
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
369
+ }, "strip", z.ZodTypeAny, {
370
+ className?: string | undefined;
371
+ style?: CSSProperties | undefined;
372
+ }, {
373
+ className?: string | undefined;
374
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
375
+ }>>;
376
+ item: z.ZodOptional<z.ZodObject<{
377
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
378
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
379
+ }, "strip", z.ZodTypeAny, {
380
+ className?: string | undefined;
381
+ style?: CSSProperties | undefined;
382
+ }, {
383
+ className?: string | undefined;
384
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
385
+ }>>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ container?: {
388
+ className?: string | undefined;
389
+ style?: CSSProperties | undefined;
390
+ } | undefined;
391
+ item?: {
392
+ className?: string | undefined;
393
+ style?: CSSProperties | undefined;
394
+ } | undefined;
395
+ }, {
396
+ container?: {
397
+ className?: string | undefined;
398
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
399
+ } | undefined;
400
+ item?: {
401
+ className?: string | undefined;
402
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
403
+ } | undefined;
404
+ }>>;
405
+ }, "strip", z.ZodTypeAny, {
406
+ button?: {
407
+ container?: {
408
+ className?: string | undefined;
409
+ style?: CSSProperties | undefined;
410
+ } | undefined;
411
+ icon?: {
412
+ className?: string | undefined;
413
+ style?: CSSProperties | undefined;
414
+ } | undefined;
415
+ text?: {
416
+ className?: string | undefined;
417
+ style?: CSSProperties | undefined;
418
+ } | undefined;
419
+ } | undefined;
420
+ content?: {
421
+ container?: {
422
+ className?: string | undefined;
423
+ style?: CSSProperties | undefined;
424
+ } | undefined;
425
+ item?: {
426
+ className?: string | undefined;
427
+ style?: CSSProperties | undefined;
428
+ } | undefined;
429
+ } | undefined;
430
+ }, {
431
+ button?: {
432
+ container?: {
433
+ className?: string | undefined;
434
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
435
+ } | undefined;
436
+ icon?: {
437
+ className?: string | undefined;
438
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
439
+ } | undefined;
440
+ text?: {
441
+ className?: string | undefined;
442
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
443
+ } | undefined;
444
+ } | undefined;
445
+ content?: {
446
+ container?: {
447
+ className?: string | undefined;
448
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
449
+ } | undefined;
450
+ item?: {
451
+ className?: string | undefined;
452
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
453
+ } | undefined;
454
+ } | undefined;
455
+ }>>;
456
+ }, "strip", z.ZodTypeAny, {
457
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
458
+ className?: string | undefined;
459
+ style?: CSSProperties | undefined;
460
+ } | undefined>>;
461
+ button?: {
462
+ className?: string | undefined;
463
+ style?: CSSProperties | undefined;
464
+ } | undefined;
465
+ image?: {
466
+ image?: {
467
+ className?: string | undefined;
468
+ style?: CSSProperties | undefined;
469
+ } | undefined;
470
+ placeholder?: {
471
+ className?: string | undefined;
472
+ style?: CSSProperties | undefined;
473
+ } | undefined;
474
+ } | undefined;
475
+ audio?: {
476
+ className?: string | undefined;
477
+ style?: CSSProperties | undefined;
478
+ } | undefined;
479
+ video?: {
480
+ className?: string | undefined;
481
+ style?: CSSProperties | undefined;
482
+ } | undefined;
483
+ file?: {
484
+ container?: {
485
+ className?: string | undefined;
486
+ style?: CSSProperties | undefined;
487
+ } | undefined;
488
+ title?: {
489
+ className?: string | undefined;
490
+ style?: CSSProperties | undefined;
491
+ } | undefined;
492
+ icon?: {
493
+ className?: string | undefined;
494
+ style?: CSSProperties | undefined;
495
+ } | undefined;
496
+ } | undefined;
497
+ location?: {
498
+ container?: {
499
+ className?: string | undefined;
500
+ style?: CSSProperties | undefined;
501
+ } | undefined;
502
+ title?: {
503
+ className?: string | undefined;
504
+ style?: CSSProperties | undefined;
505
+ } | undefined;
506
+ icon?: {
507
+ className?: string | undefined;
508
+ style?: CSSProperties | undefined;
509
+ } | undefined;
510
+ } | undefined;
511
+ column?: {
512
+ className?: string | undefined;
513
+ style?: CSSProperties | undefined;
514
+ } | undefined;
515
+ row?: {
516
+ className?: string | undefined;
517
+ style?: CSSProperties | undefined;
518
+ } | undefined;
519
+ bubble?: {
520
+ className?: string | undefined;
521
+ style?: CSSProperties | undefined;
522
+ } | undefined;
523
+ carousel?: {
524
+ container?: {
525
+ className?: string | undefined;
526
+ style?: CSSProperties | undefined;
527
+ } | undefined;
528
+ slidesContainer?: {
529
+ className?: string | undefined;
530
+ style?: CSSProperties | undefined;
531
+ } | undefined;
532
+ backButton?: {
533
+ className?: string | undefined;
534
+ style?: CSSProperties | undefined;
535
+ } | undefined;
536
+ nextButton?: {
537
+ className?: string | undefined;
538
+ style?: CSSProperties | undefined;
539
+ } | undefined;
540
+ } | undefined;
541
+ dropdown?: {
542
+ button?: {
543
+ container?: {
544
+ className?: string | undefined;
545
+ style?: CSSProperties | undefined;
546
+ } | undefined;
547
+ icon?: {
548
+ className?: string | undefined;
549
+ style?: CSSProperties | undefined;
550
+ } | undefined;
551
+ text?: {
552
+ className?: string | undefined;
553
+ style?: CSSProperties | undefined;
554
+ } | undefined;
555
+ } | undefined;
556
+ content?: {
557
+ container?: {
558
+ className?: string | undefined;
559
+ style?: CSSProperties | undefined;
560
+ } | undefined;
561
+ item?: {
562
+ className?: string | undefined;
563
+ style?: CSSProperties | undefined;
564
+ } | undefined;
565
+ } | undefined;
566
+ } | undefined;
567
+ }, {
568
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
569
+ className?: string | undefined;
570
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
571
+ } | undefined>>;
572
+ button?: {
573
+ className?: string | undefined;
574
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
575
+ } | undefined;
576
+ image?: {
577
+ image?: {
578
+ className?: string | undefined;
579
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
580
+ } | undefined;
581
+ placeholder?: {
582
+ className?: string | undefined;
583
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
584
+ } | undefined;
585
+ } | undefined;
586
+ audio?: {
587
+ className?: string | undefined;
588
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
589
+ } | undefined;
590
+ video?: {
591
+ className?: string | undefined;
592
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
593
+ } | undefined;
594
+ file?: {
595
+ container?: {
596
+ className?: string | undefined;
597
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
598
+ } | undefined;
599
+ title?: {
600
+ className?: string | undefined;
601
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
602
+ } | undefined;
603
+ icon?: {
604
+ className?: string | undefined;
605
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
606
+ } | undefined;
607
+ } | undefined;
608
+ location?: {
609
+ container?: {
610
+ className?: string | undefined;
611
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
612
+ } | undefined;
613
+ title?: {
614
+ className?: string | undefined;
615
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
616
+ } | undefined;
617
+ icon?: {
618
+ className?: string | undefined;
619
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
620
+ } | undefined;
621
+ } | undefined;
622
+ column?: {
623
+ className?: string | undefined;
624
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
625
+ } | undefined;
626
+ row?: {
627
+ className?: string | undefined;
628
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
629
+ } | undefined;
630
+ bubble?: {
631
+ className?: string | undefined;
632
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
633
+ } | undefined;
634
+ carousel?: {
635
+ container?: {
636
+ className?: string | undefined;
637
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
638
+ } | undefined;
639
+ slidesContainer?: {
640
+ className?: string | undefined;
641
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
642
+ } | undefined;
643
+ backButton?: {
644
+ className?: string | undefined;
645
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
646
+ } | undefined;
647
+ nextButton?: {
648
+ className?: string | undefined;
649
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
650
+ } | undefined;
651
+ } | undefined;
652
+ dropdown?: {
653
+ button?: {
654
+ container?: {
655
+ className?: string | undefined;
656
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
657
+ } | undefined;
658
+ icon?: {
659
+ className?: string | undefined;
660
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
661
+ } | undefined;
662
+ text?: {
663
+ className?: string | undefined;
664
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
665
+ } | undefined;
666
+ } | undefined;
667
+ content?: {
668
+ container?: {
669
+ className?: string | undefined;
670
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
671
+ } | undefined;
672
+ item?: {
673
+ className?: string | undefined;
674
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
675
+ } | undefined;
676
+ } | undefined;
677
+ } | undefined;
678
+ }>;
679
+ export type Theme = z.infer<typeof ThemeSchema>;
680
+ export declare const ThemeSchema: z.ZodObject<{
681
+ container: z.ZodOptional<z.ZodObject<{
682
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
683
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
684
+ }, "strip", z.ZodTypeAny, {
685
+ className?: string | undefined;
686
+ style?: CSSProperties | undefined;
687
+ }, {
688
+ className?: string | undefined;
689
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
690
+ }>>;
691
+ modal: z.ZodOptional<z.ZodObject<{
692
+ overlay: z.ZodOptional<z.ZodObject<{
693
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
694
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
695
+ }, "strip", z.ZodTypeAny, {
696
+ className?: string | undefined;
697
+ style?: CSSProperties | undefined;
698
+ }, {
699
+ className?: string | undefined;
700
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
701
+ }>>;
702
+ container: z.ZodOptional<z.ZodObject<{
703
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
704
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
705
+ }, "strip", z.ZodTypeAny, {
706
+ className?: string | undefined;
707
+ style?: CSSProperties | undefined;
708
+ }, {
709
+ className?: string | undefined;
710
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
711
+ }>>;
712
+ dialog: z.ZodOptional<z.ZodObject<{
713
+ container: z.ZodOptional<z.ZodObject<{
714
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
715
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
716
+ }, "strip", z.ZodTypeAny, {
717
+ className?: string | undefined;
718
+ style?: CSSProperties | undefined;
719
+ }, {
720
+ className?: string | undefined;
721
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
722
+ }>>;
723
+ title: z.ZodOptional<z.ZodObject<{
724
+ container: z.ZodOptional<z.ZodObject<{
725
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
726
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
727
+ }, "strip", z.ZodTypeAny, {
728
+ className?: string | undefined;
729
+ style?: CSSProperties | undefined;
730
+ }, {
731
+ className?: string | undefined;
732
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
733
+ }>>;
734
+ text: z.ZodOptional<z.ZodObject<{
735
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
736
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
737
+ }, "strip", z.ZodTypeAny, {
738
+ className?: string | undefined;
739
+ style?: CSSProperties | undefined;
740
+ }, {
741
+ className?: string | undefined;
742
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
743
+ }>>;
744
+ closeIcon: z.ZodOptional<z.ZodObject<{
745
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
746
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
747
+ }, "strip", z.ZodTypeAny, {
748
+ className?: string | undefined;
749
+ style?: CSSProperties | undefined;
750
+ }, {
751
+ className?: string | undefined;
752
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
753
+ }>>;
754
+ }, "strip", z.ZodTypeAny, {
755
+ container?: {
756
+ className?: string | undefined;
757
+ style?: CSSProperties | undefined;
758
+ } | undefined;
759
+ text?: {
760
+ className?: string | undefined;
761
+ style?: CSSProperties | undefined;
762
+ } | undefined;
763
+ closeIcon?: {
764
+ className?: string | undefined;
765
+ style?: CSSProperties | undefined;
766
+ } | undefined;
767
+ }, {
768
+ container?: {
769
+ className?: string | undefined;
770
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
771
+ } | undefined;
772
+ text?: {
773
+ className?: string | undefined;
774
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
775
+ } | undefined;
776
+ closeIcon?: {
777
+ className?: string | undefined;
778
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
779
+ } | undefined;
780
+ }>>;
781
+ content: z.ZodOptional<z.ZodObject<{
782
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
783
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
784
+ }, "strip", z.ZodTypeAny, {
785
+ className?: string | undefined;
786
+ style?: CSSProperties | undefined;
787
+ }, {
788
+ className?: string | undefined;
789
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
790
+ }>>;
791
+ }, "strip", z.ZodTypeAny, {
792
+ container?: {
793
+ className?: string | undefined;
794
+ style?: CSSProperties | undefined;
795
+ } | undefined;
796
+ title?: {
797
+ container?: {
798
+ className?: string | undefined;
799
+ style?: CSSProperties | undefined;
800
+ } | undefined;
801
+ text?: {
802
+ className?: string | undefined;
803
+ style?: CSSProperties | undefined;
804
+ } | undefined;
805
+ closeIcon?: {
806
+ className?: string | undefined;
807
+ style?: CSSProperties | undefined;
808
+ } | undefined;
809
+ } | undefined;
810
+ content?: {
811
+ className?: string | undefined;
812
+ style?: CSSProperties | undefined;
813
+ } | undefined;
814
+ }, {
815
+ container?: {
816
+ className?: string | undefined;
817
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
818
+ } | undefined;
819
+ title?: {
820
+ container?: {
821
+ className?: string | undefined;
822
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
823
+ } | undefined;
824
+ text?: {
825
+ className?: string | undefined;
826
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
827
+ } | undefined;
828
+ closeIcon?: {
829
+ className?: string | undefined;
830
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
831
+ } | undefined;
832
+ } | undefined;
833
+ content?: {
834
+ className?: string | undefined;
835
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
836
+ } | undefined;
837
+ }>>;
838
+ }, "strip", z.ZodTypeAny, {
839
+ overlay?: {
840
+ className?: string | undefined;
841
+ style?: CSSProperties | undefined;
842
+ } | undefined;
843
+ container?: {
844
+ className?: string | undefined;
845
+ style?: CSSProperties | undefined;
846
+ } | undefined;
847
+ dialog?: {
848
+ container?: {
849
+ className?: string | undefined;
850
+ style?: CSSProperties | undefined;
851
+ } | undefined;
852
+ title?: {
853
+ container?: {
854
+ className?: string | undefined;
855
+ style?: CSSProperties | undefined;
856
+ } | undefined;
857
+ text?: {
858
+ className?: string | undefined;
859
+ style?: CSSProperties | undefined;
860
+ } | undefined;
861
+ closeIcon?: {
862
+ className?: string | undefined;
863
+ style?: CSSProperties | undefined;
864
+ } | undefined;
865
+ } | undefined;
866
+ content?: {
867
+ className?: string | undefined;
868
+ style?: CSSProperties | undefined;
869
+ } | undefined;
870
+ } | undefined;
871
+ }, {
872
+ overlay?: {
873
+ className?: string | undefined;
874
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
875
+ } | undefined;
876
+ container?: {
877
+ className?: string | undefined;
878
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
879
+ } | undefined;
880
+ dialog?: {
881
+ container?: {
882
+ className?: string | undefined;
883
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
884
+ } | undefined;
885
+ title?: {
886
+ container?: {
887
+ className?: string | undefined;
888
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
889
+ } | undefined;
890
+ text?: {
891
+ className?: string | undefined;
892
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
893
+ } | undefined;
894
+ closeIcon?: {
895
+ className?: string | undefined;
896
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
897
+ } | undefined;
898
+ } | undefined;
899
+ content?: {
900
+ className?: string | undefined;
901
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
902
+ } | undefined;
903
+ } | undefined;
904
+ }>>;
905
+ notification: z.ZodOptional<z.ZodObject<{
906
+ container: z.ZodOptional<z.ZodObject<{
907
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
908
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
909
+ }, "strip", z.ZodTypeAny, {
910
+ className?: string | undefined;
911
+ style?: CSSProperties | undefined;
912
+ }, {
913
+ className?: string | undefined;
914
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
915
+ }>>;
916
+ title: z.ZodOptional<z.ZodObject<{
917
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
918
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
919
+ }, "strip", z.ZodTypeAny, {
920
+ className?: string | undefined;
921
+ style?: CSSProperties | undefined;
922
+ }, {
923
+ className?: string | undefined;
924
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
925
+ }>>;
926
+ description: z.ZodOptional<z.ZodObject<{
927
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
928
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
929
+ }, "strip", z.ZodTypeAny, {
930
+ className?: string | undefined;
931
+ style?: CSSProperties | undefined;
932
+ }, {
933
+ className?: string | undefined;
934
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
935
+ }>>;
936
+ icon: z.ZodOptional<z.ZodObject<{
937
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
938
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
939
+ }, "strip", z.ZodTypeAny, {
940
+ className?: string | undefined;
941
+ style?: CSSProperties | undefined;
942
+ }, {
943
+ className?: string | undefined;
944
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
945
+ }>>;
946
+ closeIcon: z.ZodOptional<z.ZodObject<{
947
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
948
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
949
+ }, "strip", z.ZodTypeAny, {
950
+ className?: string | undefined;
951
+ style?: CSSProperties | undefined;
952
+ }, {
953
+ className?: string | undefined;
954
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
955
+ }>>;
956
+ }, "strip", z.ZodTypeAny, {
957
+ container?: {
958
+ className?: string | undefined;
959
+ style?: CSSProperties | undefined;
960
+ } | undefined;
961
+ title?: {
962
+ className?: string | undefined;
963
+ style?: CSSProperties | undefined;
964
+ } | undefined;
965
+ description?: {
966
+ className?: string | undefined;
967
+ style?: CSSProperties | undefined;
968
+ } | undefined;
969
+ icon?: {
970
+ className?: string | undefined;
971
+ style?: CSSProperties | undefined;
972
+ } | undefined;
973
+ closeIcon?: {
974
+ className?: string | undefined;
975
+ style?: CSSProperties | undefined;
976
+ } | undefined;
977
+ }, {
978
+ container?: {
979
+ className?: string | undefined;
980
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
981
+ } | undefined;
982
+ title?: {
983
+ className?: string | undefined;
984
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
985
+ } | undefined;
986
+ description?: {
987
+ className?: string | undefined;
988
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
989
+ } | undefined;
990
+ icon?: {
991
+ className?: string | undefined;
992
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
993
+ } | undefined;
994
+ closeIcon?: {
995
+ className?: string | undefined;
996
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
997
+ } | undefined;
998
+ }>>;
999
+ header: z.ZodOptional<z.ZodObject<{
1000
+ container: z.ZodOptional<z.ZodObject<{
1001
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1002
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1003
+ }, "strip", z.ZodTypeAny, {
1004
+ className?: string | undefined;
1005
+ style?: CSSProperties | undefined;
1006
+ }, {
1007
+ className?: string | undefined;
1008
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1009
+ }>>;
1010
+ content: z.ZodObject<{
1011
+ container: z.ZodOptional<z.ZodObject<{
1012
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1013
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1014
+ }, "strip", z.ZodTypeAny, {
1015
+ className?: string | undefined;
1016
+ style?: CSSProperties | undefined;
1017
+ }, {
1018
+ className?: string | undefined;
1019
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1020
+ }>>;
1021
+ title: z.ZodOptional<z.ZodObject<{
1022
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1023
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1024
+ }, "strip", z.ZodTypeAny, {
1025
+ className?: string | undefined;
1026
+ style?: CSSProperties | undefined;
1027
+ }, {
1028
+ className?: string | undefined;
1029
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1030
+ }>>;
1031
+ description: z.ZodOptional<z.ZodObject<{
1032
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1033
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1034
+ }, "strip", z.ZodTypeAny, {
1035
+ className?: string | undefined;
1036
+ style?: CSSProperties | undefined;
1037
+ }, {
1038
+ className?: string | undefined;
1039
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1040
+ }>>;
1041
+ avatar: z.ZodOptional<z.ZodObject<{
1042
+ container: z.ZodOptional<z.ZodObject<{
1043
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1044
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1045
+ }, "strip", z.ZodTypeAny, {
1046
+ className?: string | undefined;
1047
+ style?: CSSProperties | undefined;
1048
+ }, {
1049
+ className?: string | undefined;
1050
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1051
+ }>>;
1052
+ image: z.ZodOptional<z.ZodObject<{
1053
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1054
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1055
+ }, "strip", z.ZodTypeAny, {
1056
+ className?: string | undefined;
1057
+ style?: CSSProperties | undefined;
1058
+ }, {
1059
+ className?: string | undefined;
1060
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1061
+ }>>;
1062
+ fallback: z.ZodOptional<z.ZodObject<{
1063
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1064
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1065
+ }, "strip", z.ZodTypeAny, {
1066
+ className?: string | undefined;
1067
+ style?: CSSProperties | undefined;
1068
+ }, {
1069
+ className?: string | undefined;
1070
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1071
+ }>>;
1072
+ }, "strip", z.ZodTypeAny, {
1073
+ container?: {
1074
+ className?: string | undefined;
1075
+ style?: CSSProperties | undefined;
1076
+ } | undefined;
1077
+ image?: {
1078
+ className?: string | undefined;
1079
+ style?: CSSProperties | undefined;
1080
+ } | undefined;
1081
+ fallback?: {
1082
+ className?: string | undefined;
1083
+ style?: CSSProperties | undefined;
1084
+ } | undefined;
1085
+ }, {
1086
+ container?: {
1087
+ className?: string | undefined;
1088
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1089
+ } | undefined;
1090
+ image?: {
1091
+ className?: string | undefined;
1092
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1093
+ } | undefined;
1094
+ fallback?: {
1095
+ className?: string | undefined;
1096
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1097
+ } | undefined;
1098
+ }>>;
1099
+ actions: z.ZodOptional<z.ZodObject<{
1100
+ container: z.ZodOptional<z.ZodObject<{
1101
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1102
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1103
+ }, "strip", z.ZodTypeAny, {
1104
+ className?: string | undefined;
1105
+ style?: CSSProperties | undefined;
1106
+ }, {
1107
+ className?: string | undefined;
1108
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1109
+ }>>;
1110
+ icons: z.ZodOptional<z.ZodObject<{
1111
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1112
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1113
+ }, "strip", z.ZodTypeAny, {
1114
+ className?: string | undefined;
1115
+ style?: CSSProperties | undefined;
1116
+ }, {
1117
+ className?: string | undefined;
1118
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1119
+ }>>;
1120
+ }, "strip", z.ZodTypeAny, {
1121
+ container?: {
1122
+ className?: string | undefined;
1123
+ style?: CSSProperties | undefined;
1124
+ } | undefined;
1125
+ icons?: {
1126
+ className?: string | undefined;
1127
+ style?: CSSProperties | undefined;
1128
+ } | undefined;
1129
+ }, {
1130
+ container?: {
1131
+ className?: string | undefined;
1132
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1133
+ } | undefined;
1134
+ icons?: {
1135
+ className?: string | undefined;
1136
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1137
+ } | undefined;
1138
+ }>>;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ container?: {
1141
+ className?: string | undefined;
1142
+ style?: CSSProperties | undefined;
1143
+ } | undefined;
1144
+ title?: {
1145
+ className?: string | undefined;
1146
+ style?: CSSProperties | undefined;
1147
+ } | undefined;
1148
+ description?: {
1149
+ className?: string | undefined;
1150
+ style?: CSSProperties | undefined;
1151
+ } | undefined;
1152
+ avatar?: {
1153
+ container?: {
1154
+ className?: string | undefined;
1155
+ style?: CSSProperties | undefined;
1156
+ } | undefined;
1157
+ image?: {
1158
+ className?: string | undefined;
1159
+ style?: CSSProperties | undefined;
1160
+ } | undefined;
1161
+ fallback?: {
1162
+ className?: string | undefined;
1163
+ style?: CSSProperties | undefined;
1164
+ } | undefined;
1165
+ } | undefined;
1166
+ actions?: {
1167
+ container?: {
1168
+ className?: string | undefined;
1169
+ style?: CSSProperties | undefined;
1170
+ } | undefined;
1171
+ icons?: {
1172
+ className?: string | undefined;
1173
+ style?: CSSProperties | undefined;
1174
+ } | undefined;
1175
+ } | undefined;
1176
+ }, {
1177
+ container?: {
1178
+ className?: string | undefined;
1179
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1180
+ } | undefined;
1181
+ title?: {
1182
+ className?: string | undefined;
1183
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1184
+ } | undefined;
1185
+ description?: {
1186
+ className?: string | undefined;
1187
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1188
+ } | undefined;
1189
+ avatar?: {
1190
+ container?: {
1191
+ className?: string | undefined;
1192
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1193
+ } | undefined;
1194
+ image?: {
1195
+ className?: string | undefined;
1196
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1197
+ } | undefined;
1198
+ fallback?: {
1199
+ className?: string | undefined;
1200
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1201
+ } | undefined;
1202
+ } | undefined;
1203
+ actions?: {
1204
+ container?: {
1205
+ className?: string | undefined;
1206
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1207
+ } | undefined;
1208
+ icons?: {
1209
+ className?: string | undefined;
1210
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1211
+ } | undefined;
1212
+ } | undefined;
1213
+ }>;
1214
+ expandedContent: z.ZodOptional<z.ZodObject<{
1215
+ container: z.ZodOptional<z.ZodObject<{
1216
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1217
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1218
+ }, "strip", z.ZodTypeAny, {
1219
+ className?: string | undefined;
1220
+ style?: CSSProperties | undefined;
1221
+ }, {
1222
+ className?: string | undefined;
1223
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1224
+ }>>;
1225
+ descriptionItems: z.ZodOptional<z.ZodObject<{
1226
+ container: z.ZodOptional<z.ZodObject<{
1227
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1228
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1229
+ }, "strip", z.ZodTypeAny, {
1230
+ className?: string | undefined;
1231
+ style?: CSSProperties | undefined;
1232
+ }, {
1233
+ className?: string | undefined;
1234
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1235
+ }>>;
1236
+ icon: z.ZodOptional<z.ZodObject<{
1237
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1238
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1239
+ }, "strip", z.ZodTypeAny, {
1240
+ className?: string | undefined;
1241
+ style?: CSSProperties | undefined;
1242
+ }, {
1243
+ className?: string | undefined;
1244
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1245
+ }>>;
1246
+ text: z.ZodOptional<z.ZodObject<{
1247
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1248
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1249
+ }, "strip", z.ZodTypeAny, {
1250
+ className?: string | undefined;
1251
+ style?: CSSProperties | undefined;
1252
+ }, {
1253
+ className?: string | undefined;
1254
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1255
+ }>>;
1256
+ link: z.ZodOptional<z.ZodObject<{
1257
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1258
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1259
+ }, "strip", z.ZodTypeAny, {
1260
+ className?: string | undefined;
1261
+ style?: CSSProperties | undefined;
1262
+ }, {
1263
+ className?: string | undefined;
1264
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1265
+ }>>;
1266
+ }, "strip", z.ZodTypeAny, {
1267
+ container?: {
1268
+ className?: string | undefined;
1269
+ style?: CSSProperties | undefined;
1270
+ } | undefined;
1271
+ icon?: {
1272
+ className?: string | undefined;
1273
+ style?: CSSProperties | undefined;
1274
+ } | undefined;
1275
+ text?: {
1276
+ className?: string | undefined;
1277
+ style?: CSSProperties | undefined;
1278
+ } | undefined;
1279
+ link?: {
1280
+ className?: string | undefined;
1281
+ style?: CSSProperties | undefined;
1282
+ } | undefined;
1283
+ }, {
1284
+ container?: {
1285
+ className?: string | undefined;
1286
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1287
+ } | undefined;
1288
+ icon?: {
1289
+ className?: string | undefined;
1290
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1291
+ } | undefined;
1292
+ text?: {
1293
+ className?: string | undefined;
1294
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1295
+ } | undefined;
1296
+ link?: {
1297
+ className?: string | undefined;
1298
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1299
+ } | undefined;
1300
+ }>>;
1301
+ }, "strip", z.ZodTypeAny, {
1302
+ container?: {
1303
+ className?: string | undefined;
1304
+ style?: CSSProperties | undefined;
1305
+ } | undefined;
1306
+ descriptionItems?: {
1307
+ container?: {
1308
+ className?: string | undefined;
1309
+ style?: CSSProperties | undefined;
1310
+ } | undefined;
1311
+ icon?: {
1312
+ className?: string | undefined;
1313
+ style?: CSSProperties | undefined;
1314
+ } | undefined;
1315
+ text?: {
1316
+ className?: string | undefined;
1317
+ style?: CSSProperties | undefined;
1318
+ } | undefined;
1319
+ link?: {
1320
+ className?: string | undefined;
1321
+ style?: CSSProperties | undefined;
1322
+ } | undefined;
1323
+ } | undefined;
1324
+ }, {
1325
+ container?: {
1326
+ className?: string | undefined;
1327
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1328
+ } | undefined;
1329
+ descriptionItems?: {
1330
+ container?: {
1331
+ className?: string | undefined;
1332
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1333
+ } | undefined;
1334
+ icon?: {
1335
+ className?: string | undefined;
1336
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1337
+ } | undefined;
1338
+ text?: {
1339
+ className?: string | undefined;
1340
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1341
+ } | undefined;
1342
+ link?: {
1343
+ className?: string | undefined;
1344
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1345
+ } | undefined;
1346
+ } | undefined;
1347
+ }>>;
1348
+ description: z.ZodOptional<z.ZodObject<{
1349
+ container: z.ZodOptional<z.ZodObject<{
1350
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1351
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1352
+ }, "strip", z.ZodTypeAny, {
1353
+ className?: string | undefined;
1354
+ style?: CSSProperties | undefined;
1355
+ }, {
1356
+ className?: string | undefined;
1357
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1358
+ }>>;
1359
+ title: z.ZodOptional<z.ZodObject<{
1360
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1361
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1362
+ }, "strip", z.ZodTypeAny, {
1363
+ className?: string | undefined;
1364
+ style?: CSSProperties | undefined;
1365
+ }, {
1366
+ className?: string | undefined;
1367
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1368
+ }>>;
1369
+ subtitle: z.ZodOptional<z.ZodObject<{
1370
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1371
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1372
+ }, "strip", z.ZodTypeAny, {
1373
+ className?: string | undefined;
1374
+ style?: CSSProperties | undefined;
1375
+ }, {
1376
+ className?: string | undefined;
1377
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1378
+ }>>;
1379
+ }, "strip", z.ZodTypeAny, {
1380
+ container?: {
1381
+ className?: string | undefined;
1382
+ style?: CSSProperties | undefined;
1383
+ } | undefined;
1384
+ title?: {
1385
+ className?: string | undefined;
1386
+ style?: CSSProperties | undefined;
1387
+ } | undefined;
1388
+ subtitle?: {
1389
+ className?: string | undefined;
1390
+ style?: CSSProperties | undefined;
1391
+ } | undefined;
1392
+ }, {
1393
+ container?: {
1394
+ className?: string | undefined;
1395
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1396
+ } | undefined;
1397
+ title?: {
1398
+ className?: string | undefined;
1399
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1400
+ } | undefined;
1401
+ subtitle?: {
1402
+ className?: string | undefined;
1403
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1404
+ } | undefined;
1405
+ }>>;
1406
+ newConversationIcon: z.ZodOptional<z.ZodObject<{
1407
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1408
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ className?: string | undefined;
1411
+ style?: CSSProperties | undefined;
1412
+ }, {
1413
+ className?: string | undefined;
1414
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1415
+ }>>;
1416
+ }, "strip", z.ZodTypeAny, {
1417
+ content: {
1418
+ container?: {
1419
+ className?: string | undefined;
1420
+ style?: CSSProperties | undefined;
1421
+ } | undefined;
1422
+ title?: {
1423
+ className?: string | undefined;
1424
+ style?: CSSProperties | undefined;
1425
+ } | undefined;
1426
+ description?: {
1427
+ className?: string | undefined;
1428
+ style?: CSSProperties | undefined;
1429
+ } | undefined;
1430
+ avatar?: {
1431
+ container?: {
1432
+ className?: string | undefined;
1433
+ style?: CSSProperties | undefined;
1434
+ } | undefined;
1435
+ image?: {
1436
+ className?: string | undefined;
1437
+ style?: CSSProperties | undefined;
1438
+ } | undefined;
1439
+ fallback?: {
1440
+ className?: string | undefined;
1441
+ style?: CSSProperties | undefined;
1442
+ } | undefined;
1443
+ } | undefined;
1444
+ actions?: {
1445
+ container?: {
1446
+ className?: string | undefined;
1447
+ style?: CSSProperties | undefined;
1448
+ } | undefined;
1449
+ icons?: {
1450
+ className?: string | undefined;
1451
+ style?: CSSProperties | undefined;
1452
+ } | undefined;
1453
+ } | undefined;
1454
+ };
1455
+ container?: {
1456
+ className?: string | undefined;
1457
+ style?: CSSProperties | undefined;
1458
+ } | undefined;
1459
+ expandedContent?: {
1460
+ container?: {
1461
+ className?: string | undefined;
1462
+ style?: CSSProperties | undefined;
1463
+ } | undefined;
1464
+ descriptionItems?: {
1465
+ container?: {
1466
+ className?: string | undefined;
1467
+ style?: CSSProperties | undefined;
1468
+ } | undefined;
1469
+ icon?: {
1470
+ className?: string | undefined;
1471
+ style?: CSSProperties | undefined;
1472
+ } | undefined;
1473
+ text?: {
1474
+ className?: string | undefined;
1475
+ style?: CSSProperties | undefined;
1476
+ } | undefined;
1477
+ link?: {
1478
+ className?: string | undefined;
1479
+ style?: CSSProperties | undefined;
1480
+ } | undefined;
1481
+ } | undefined;
1482
+ } | undefined;
1483
+ description?: {
1484
+ container?: {
1485
+ className?: string | undefined;
1486
+ style?: CSSProperties | undefined;
1487
+ } | undefined;
1488
+ title?: {
1489
+ className?: string | undefined;
1490
+ style?: CSSProperties | undefined;
1491
+ } | undefined;
1492
+ subtitle?: {
1493
+ className?: string | undefined;
1494
+ style?: CSSProperties | undefined;
1495
+ } | undefined;
1496
+ } | undefined;
1497
+ newConversationIcon?: {
1498
+ className?: string | undefined;
1499
+ style?: CSSProperties | undefined;
1500
+ } | undefined;
1501
+ }, {
1502
+ content: {
1503
+ container?: {
1504
+ className?: string | undefined;
1505
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1506
+ } | undefined;
1507
+ title?: {
1508
+ className?: string | undefined;
1509
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1510
+ } | undefined;
1511
+ description?: {
1512
+ className?: string | undefined;
1513
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1514
+ } | undefined;
1515
+ avatar?: {
1516
+ container?: {
1517
+ className?: string | undefined;
1518
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1519
+ } | undefined;
1520
+ image?: {
1521
+ className?: string | undefined;
1522
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1523
+ } | undefined;
1524
+ fallback?: {
1525
+ className?: string | undefined;
1526
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1527
+ } | undefined;
1528
+ } | undefined;
1529
+ actions?: {
1530
+ container?: {
1531
+ className?: string | undefined;
1532
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1533
+ } | undefined;
1534
+ icons?: {
1535
+ className?: string | undefined;
1536
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1537
+ } | undefined;
1538
+ } | undefined;
1539
+ };
1540
+ container?: {
1541
+ className?: string | undefined;
1542
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1543
+ } | undefined;
1544
+ expandedContent?: {
1545
+ container?: {
1546
+ className?: string | undefined;
1547
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1548
+ } | undefined;
1549
+ descriptionItems?: {
1550
+ container?: {
1551
+ className?: string | undefined;
1552
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1553
+ } | undefined;
1554
+ icon?: {
1555
+ className?: string | undefined;
1556
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1557
+ } | undefined;
1558
+ text?: {
1559
+ className?: string | undefined;
1560
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1561
+ } | undefined;
1562
+ link?: {
1563
+ className?: string | undefined;
1564
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1565
+ } | undefined;
1566
+ } | undefined;
1567
+ } | undefined;
1568
+ description?: {
1569
+ container?: {
1570
+ className?: string | undefined;
1571
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1572
+ } | undefined;
1573
+ title?: {
1574
+ className?: string | undefined;
1575
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1576
+ } | undefined;
1577
+ subtitle?: {
1578
+ className?: string | undefined;
1579
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1580
+ } | undefined;
1581
+ } | undefined;
1582
+ newConversationIcon?: {
1583
+ className?: string | undefined;
1584
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1585
+ } | undefined;
1586
+ }>>;
1587
+ composer: z.ZodOptional<z.ZodObject<{
1588
+ container: z.ZodOptional<z.ZodObject<{
1589
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1590
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1591
+ }, "strip", z.ZodTypeAny, {
1592
+ className?: string | undefined;
1593
+ style?: CSSProperties | undefined;
1594
+ }, {
1595
+ className?: string | undefined;
1596
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1597
+ }>>;
1598
+ input: z.ZodOptional<z.ZodObject<{
1599
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1600
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1601
+ }, "strip", z.ZodTypeAny, {
1602
+ className?: string | undefined;
1603
+ style?: CSSProperties | undefined;
1604
+ }, {
1605
+ className?: string | undefined;
1606
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1607
+ }>>;
1608
+ button: z.ZodOptional<z.ZodObject<{
1609
+ container: z.ZodOptional<z.ZodObject<{
1610
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1611
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1612
+ }, "strip", z.ZodTypeAny, {
1613
+ className?: string | undefined;
1614
+ style?: CSSProperties | undefined;
1615
+ }, {
1616
+ className?: string | undefined;
1617
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1618
+ }>>;
1619
+ icon: z.ZodOptional<z.ZodObject<{
1620
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1621
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1622
+ }, "strip", z.ZodTypeAny, {
1623
+ className?: string | undefined;
1624
+ style?: CSSProperties | undefined;
1625
+ }, {
1626
+ className?: string | undefined;
1627
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1628
+ }>>;
1629
+ }, "strip", z.ZodTypeAny, {
1630
+ container?: {
1631
+ className?: string | undefined;
1632
+ style?: CSSProperties | undefined;
1633
+ } | undefined;
1634
+ icon?: {
1635
+ className?: string | undefined;
1636
+ style?: CSSProperties | undefined;
1637
+ } | undefined;
1638
+ }, {
1639
+ container?: {
1640
+ className?: string | undefined;
1641
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1642
+ } | undefined;
1643
+ icon?: {
1644
+ className?: string | undefined;
1645
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1646
+ } | undefined;
1647
+ }>>;
1648
+ }, "strip", z.ZodTypeAny, {
1649
+ container?: {
1650
+ className?: string | undefined;
1651
+ style?: CSSProperties | undefined;
1652
+ } | undefined;
1653
+ input?: {
1654
+ className?: string | undefined;
1655
+ style?: CSSProperties | undefined;
1656
+ } | undefined;
1657
+ button?: {
1658
+ container?: {
1659
+ className?: string | undefined;
1660
+ style?: CSSProperties | undefined;
1661
+ } | undefined;
1662
+ icon?: {
1663
+ className?: string | undefined;
1664
+ style?: CSSProperties | undefined;
1665
+ } | undefined;
1666
+ } | undefined;
1667
+ }, {
1668
+ container?: {
1669
+ className?: string | undefined;
1670
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1671
+ } | undefined;
1672
+ input?: {
1673
+ className?: string | undefined;
1674
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1675
+ } | undefined;
1676
+ button?: {
1677
+ container?: {
1678
+ className?: string | undefined;
1679
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1680
+ } | undefined;
1681
+ icon?: {
1682
+ className?: string | undefined;
1683
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1684
+ } | undefined;
1685
+ } | undefined;
1686
+ }>>;
1687
+ messageList: z.ZodOptional<z.ZodObject<{
1688
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1689
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1690
+ }, "strip", z.ZodTypeAny, {
1691
+ className?: string | undefined;
1692
+ style?: CSSProperties | undefined;
1693
+ }, {
1694
+ className?: string | undefined;
1695
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1696
+ }>>;
1697
+ message: z.ZodOptional<z.ZodObject<{
1698
+ container: z.ZodOptional<z.ZodObject<{
1699
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1700
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1701
+ }, "strip", z.ZodTypeAny, {
1702
+ className?: string | undefined;
1703
+ style?: CSSProperties | undefined;
1704
+ }, {
1705
+ className?: string | undefined;
1706
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1707
+ }>>;
1708
+ avatar: z.ZodOptional<z.ZodObject<{
1709
+ container: z.ZodOptional<z.ZodObject<{
1710
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1711
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1712
+ }, "strip", z.ZodTypeAny, {
1713
+ className?: string | undefined;
1714
+ style?: CSSProperties | undefined;
1715
+ }, {
1716
+ className?: string | undefined;
1717
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1718
+ }>>;
1719
+ image: z.ZodOptional<z.ZodObject<{
1720
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1721
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1722
+ }, "strip", z.ZodTypeAny, {
1723
+ className?: string | undefined;
1724
+ style?: CSSProperties | undefined;
1725
+ }, {
1726
+ className?: string | undefined;
1727
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1728
+ }>>;
1729
+ fallback: z.ZodOptional<z.ZodObject<{
1730
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1731
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1732
+ }, "strip", z.ZodTypeAny, {
1733
+ className?: string | undefined;
1734
+ style?: CSSProperties | undefined;
1735
+ }, {
1736
+ className?: string | undefined;
1737
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1738
+ }>>;
1739
+ }, "strip", z.ZodTypeAny, {
1740
+ container?: {
1741
+ className?: string | undefined;
1742
+ style?: CSSProperties | undefined;
1743
+ } | undefined;
1744
+ image?: {
1745
+ className?: string | undefined;
1746
+ style?: CSSProperties | undefined;
1747
+ } | undefined;
1748
+ fallback?: {
1749
+ className?: string | undefined;
1750
+ style?: CSSProperties | undefined;
1751
+ } | undefined;
1752
+ }, {
1753
+ container?: {
1754
+ className?: string | undefined;
1755
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1756
+ } | undefined;
1757
+ image?: {
1758
+ className?: string | undefined;
1759
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1760
+ } | undefined;
1761
+ fallback?: {
1762
+ className?: string | undefined;
1763
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1764
+ } | undefined;
1765
+ }>>;
1766
+ blocks: z.ZodOptional<z.ZodObject<{
1767
+ button: z.ZodOptional<z.ZodObject<{
1768
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1769
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1770
+ }, "strip", z.ZodTypeAny, {
1771
+ className?: string | undefined;
1772
+ style?: CSSProperties | undefined;
1773
+ }, {
1774
+ className?: string | undefined;
1775
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1776
+ }>>;
1777
+ text: z.ZodRecord<z.ZodEnum<["heading1", "heading2", "heading3", "text", "horizontalRule", "link", "italic", "bold", "orderedList", "unorderedList", "listItem", "lineBreak", "pre"]>, z.ZodOptional<z.ZodObject<{
1778
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1779
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1780
+ }, "strip", z.ZodTypeAny, {
1781
+ className?: string | undefined;
1782
+ style?: CSSProperties | undefined;
1783
+ }, {
1784
+ className?: string | undefined;
1785
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1786
+ }>>>;
1787
+ image: z.ZodOptional<z.ZodObject<{
1788
+ image: z.ZodOptional<z.ZodObject<{
1789
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1790
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1791
+ }, "strip", z.ZodTypeAny, {
1792
+ className?: string | undefined;
1793
+ style?: CSSProperties | undefined;
1794
+ }, {
1795
+ className?: string | undefined;
1796
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1797
+ }>>;
1798
+ placeholder: z.ZodOptional<z.ZodObject<{
1799
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1800
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1801
+ }, "strip", z.ZodTypeAny, {
1802
+ className?: string | undefined;
1803
+ style?: CSSProperties | undefined;
1804
+ }, {
1805
+ className?: string | undefined;
1806
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1807
+ }>>;
1808
+ }, "strip", z.ZodTypeAny, {
1809
+ image?: {
1810
+ className?: string | undefined;
1811
+ style?: CSSProperties | undefined;
1812
+ } | undefined;
1813
+ placeholder?: {
1814
+ className?: string | undefined;
1815
+ style?: CSSProperties | undefined;
1816
+ } | undefined;
1817
+ }, {
1818
+ image?: {
1819
+ className?: string | undefined;
1820
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1821
+ } | undefined;
1822
+ placeholder?: {
1823
+ className?: string | undefined;
1824
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1825
+ } | undefined;
1826
+ }>>;
1827
+ audio: z.ZodOptional<z.ZodObject<{
1828
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1829
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1830
+ }, "strip", z.ZodTypeAny, {
1831
+ className?: string | undefined;
1832
+ style?: CSSProperties | undefined;
1833
+ }, {
1834
+ className?: string | undefined;
1835
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1836
+ }>>;
1837
+ video: z.ZodOptional<z.ZodObject<{
1838
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1839
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1840
+ }, "strip", z.ZodTypeAny, {
1841
+ className?: string | undefined;
1842
+ style?: CSSProperties | undefined;
1843
+ }, {
1844
+ className?: string | undefined;
1845
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1846
+ }>>;
1847
+ file: z.ZodOptional<z.ZodObject<{
1848
+ container: z.ZodOptional<z.ZodObject<{
1849
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1850
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1851
+ }, "strip", z.ZodTypeAny, {
1852
+ className?: string | undefined;
1853
+ style?: CSSProperties | undefined;
1854
+ }, {
1855
+ className?: string | undefined;
1856
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1857
+ }>>;
1858
+ title: z.ZodOptional<z.ZodObject<{
1859
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1860
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1861
+ }, "strip", z.ZodTypeAny, {
1862
+ className?: string | undefined;
1863
+ style?: CSSProperties | undefined;
1864
+ }, {
1865
+ className?: string | undefined;
1866
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1867
+ }>>;
1868
+ icon: z.ZodOptional<z.ZodObject<{
1869
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1870
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1871
+ }, "strip", z.ZodTypeAny, {
1872
+ className?: string | undefined;
1873
+ style?: CSSProperties | undefined;
1874
+ }, {
1875
+ className?: string | undefined;
1876
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1877
+ }>>;
1878
+ }, "strip", z.ZodTypeAny, {
1879
+ container?: {
1880
+ className?: string | undefined;
1881
+ style?: CSSProperties | undefined;
1882
+ } | undefined;
1883
+ title?: {
1884
+ className?: string | undefined;
1885
+ style?: CSSProperties | undefined;
1886
+ } | undefined;
1887
+ icon?: {
1888
+ className?: string | undefined;
1889
+ style?: CSSProperties | undefined;
1890
+ } | undefined;
1891
+ }, {
1892
+ container?: {
1893
+ className?: string | undefined;
1894
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1895
+ } | undefined;
1896
+ title?: {
1897
+ className?: string | undefined;
1898
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1899
+ } | undefined;
1900
+ icon?: {
1901
+ className?: string | undefined;
1902
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1903
+ } | undefined;
1904
+ }>>;
1905
+ location: z.ZodOptional<z.ZodObject<{
1906
+ container: z.ZodOptional<z.ZodObject<{
1907
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1908
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1909
+ }, "strip", z.ZodTypeAny, {
1910
+ className?: string | undefined;
1911
+ style?: CSSProperties | undefined;
1912
+ }, {
1913
+ className?: string | undefined;
1914
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1915
+ }>>;
1916
+ title: z.ZodOptional<z.ZodObject<{
1917
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1918
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1919
+ }, "strip", z.ZodTypeAny, {
1920
+ className?: string | undefined;
1921
+ style?: CSSProperties | undefined;
1922
+ }, {
1923
+ className?: string | undefined;
1924
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1925
+ }>>;
1926
+ icon: z.ZodOptional<z.ZodObject<{
1927
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1928
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1929
+ }, "strip", z.ZodTypeAny, {
1930
+ className?: string | undefined;
1931
+ style?: CSSProperties | undefined;
1932
+ }, {
1933
+ className?: string | undefined;
1934
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1935
+ }>>;
1936
+ }, "strip", z.ZodTypeAny, {
1937
+ container?: {
1938
+ className?: string | undefined;
1939
+ style?: CSSProperties | undefined;
1940
+ } | undefined;
1941
+ title?: {
1942
+ className?: string | undefined;
1943
+ style?: CSSProperties | undefined;
1944
+ } | undefined;
1945
+ icon?: {
1946
+ className?: string | undefined;
1947
+ style?: CSSProperties | undefined;
1948
+ } | undefined;
1949
+ }, {
1950
+ container?: {
1951
+ className?: string | undefined;
1952
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1953
+ } | undefined;
1954
+ title?: {
1955
+ className?: string | undefined;
1956
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1957
+ } | undefined;
1958
+ icon?: {
1959
+ className?: string | undefined;
1960
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1961
+ } | undefined;
1962
+ }>>;
1963
+ column: z.ZodOptional<z.ZodObject<{
1964
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1965
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1966
+ }, "strip", z.ZodTypeAny, {
1967
+ className?: string | undefined;
1968
+ style?: CSSProperties | undefined;
1969
+ }, {
1970
+ className?: string | undefined;
1971
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1972
+ }>>;
1973
+ row: z.ZodOptional<z.ZodObject<{
1974
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1975
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1976
+ }, "strip", z.ZodTypeAny, {
1977
+ className?: string | undefined;
1978
+ style?: CSSProperties | undefined;
1979
+ }, {
1980
+ className?: string | undefined;
1981
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1982
+ }>>;
1983
+ bubble: z.ZodOptional<z.ZodObject<{
1984
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1985
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1986
+ }, "strip", z.ZodTypeAny, {
1987
+ className?: string | undefined;
1988
+ style?: CSSProperties | undefined;
1989
+ }, {
1990
+ className?: string | undefined;
1991
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1992
+ }>>;
1993
+ carousel: z.ZodOptional<z.ZodObject<{
1994
+ container: z.ZodOptional<z.ZodObject<{
1995
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1996
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
1997
+ }, "strip", z.ZodTypeAny, {
1998
+ className?: string | undefined;
1999
+ style?: CSSProperties | undefined;
2000
+ }, {
2001
+ className?: string | undefined;
2002
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2003
+ }>>;
2004
+ slidesContainer: z.ZodOptional<z.ZodObject<{
2005
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2006
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2007
+ }, "strip", z.ZodTypeAny, {
2008
+ className?: string | undefined;
2009
+ style?: CSSProperties | undefined;
2010
+ }, {
2011
+ className?: string | undefined;
2012
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2013
+ }>>;
2014
+ backButton: z.ZodOptional<z.ZodObject<{
2015
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2016
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2017
+ }, "strip", z.ZodTypeAny, {
2018
+ className?: string | undefined;
2019
+ style?: CSSProperties | undefined;
2020
+ }, {
2021
+ className?: string | undefined;
2022
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2023
+ }>>;
2024
+ nextButton: z.ZodOptional<z.ZodObject<{
2025
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2026
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2027
+ }, "strip", z.ZodTypeAny, {
2028
+ className?: string | undefined;
2029
+ style?: CSSProperties | undefined;
2030
+ }, {
2031
+ className?: string | undefined;
2032
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2033
+ }>>;
2034
+ }, "strip", z.ZodTypeAny, {
2035
+ container?: {
2036
+ className?: string | undefined;
2037
+ style?: CSSProperties | undefined;
2038
+ } | undefined;
2039
+ slidesContainer?: {
2040
+ className?: string | undefined;
2041
+ style?: CSSProperties | undefined;
2042
+ } | undefined;
2043
+ backButton?: {
2044
+ className?: string | undefined;
2045
+ style?: CSSProperties | undefined;
2046
+ } | undefined;
2047
+ nextButton?: {
2048
+ className?: string | undefined;
2049
+ style?: CSSProperties | undefined;
2050
+ } | undefined;
2051
+ }, {
2052
+ container?: {
2053
+ className?: string | undefined;
2054
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2055
+ } | undefined;
2056
+ slidesContainer?: {
2057
+ className?: string | undefined;
2058
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2059
+ } | undefined;
2060
+ backButton?: {
2061
+ className?: string | undefined;
2062
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2063
+ } | undefined;
2064
+ nextButton?: {
2065
+ className?: string | undefined;
2066
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2067
+ } | undefined;
2068
+ }>>;
2069
+ dropdown: z.ZodOptional<z.ZodObject<{
2070
+ button: z.ZodOptional<z.ZodObject<{
2071
+ container: z.ZodOptional<z.ZodObject<{
2072
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2073
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2074
+ }, "strip", z.ZodTypeAny, {
2075
+ className?: string | undefined;
2076
+ style?: CSSProperties | undefined;
2077
+ }, {
2078
+ className?: string | undefined;
2079
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2080
+ }>>;
2081
+ icon: z.ZodOptional<z.ZodObject<{
2082
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2083
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2084
+ }, "strip", z.ZodTypeAny, {
2085
+ className?: string | undefined;
2086
+ style?: CSSProperties | undefined;
2087
+ }, {
2088
+ className?: string | undefined;
2089
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2090
+ }>>;
2091
+ text: z.ZodOptional<z.ZodObject<{
2092
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2093
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2094
+ }, "strip", z.ZodTypeAny, {
2095
+ className?: string | undefined;
2096
+ style?: CSSProperties | undefined;
2097
+ }, {
2098
+ className?: string | undefined;
2099
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2100
+ }>>;
2101
+ }, "strip", z.ZodTypeAny, {
2102
+ container?: {
2103
+ className?: string | undefined;
2104
+ style?: CSSProperties | undefined;
2105
+ } | undefined;
2106
+ icon?: {
2107
+ className?: string | undefined;
2108
+ style?: CSSProperties | undefined;
2109
+ } | undefined;
2110
+ text?: {
2111
+ className?: string | undefined;
2112
+ style?: CSSProperties | undefined;
2113
+ } | undefined;
2114
+ }, {
2115
+ container?: {
2116
+ className?: string | undefined;
2117
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2118
+ } | undefined;
2119
+ icon?: {
2120
+ className?: string | undefined;
2121
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2122
+ } | undefined;
2123
+ text?: {
2124
+ className?: string | undefined;
2125
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2126
+ } | undefined;
2127
+ }>>;
2128
+ content: z.ZodOptional<z.ZodObject<{
2129
+ container: z.ZodOptional<z.ZodObject<{
2130
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2131
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2132
+ }, "strip", z.ZodTypeAny, {
2133
+ className?: string | undefined;
2134
+ style?: CSSProperties | undefined;
2135
+ }, {
2136
+ className?: string | undefined;
2137
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2138
+ }>>;
2139
+ item: z.ZodOptional<z.ZodObject<{
2140
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2141
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2142
+ }, "strip", z.ZodTypeAny, {
2143
+ className?: string | undefined;
2144
+ style?: CSSProperties | undefined;
2145
+ }, {
2146
+ className?: string | undefined;
2147
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2148
+ }>>;
2149
+ }, "strip", z.ZodTypeAny, {
2150
+ container?: {
2151
+ className?: string | undefined;
2152
+ style?: CSSProperties | undefined;
2153
+ } | undefined;
2154
+ item?: {
2155
+ className?: string | undefined;
2156
+ style?: CSSProperties | undefined;
2157
+ } | undefined;
2158
+ }, {
2159
+ container?: {
2160
+ className?: string | undefined;
2161
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2162
+ } | undefined;
2163
+ item?: {
2164
+ className?: string | undefined;
2165
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2166
+ } | undefined;
2167
+ }>>;
2168
+ }, "strip", z.ZodTypeAny, {
2169
+ button?: {
2170
+ container?: {
2171
+ className?: string | undefined;
2172
+ style?: CSSProperties | undefined;
2173
+ } | undefined;
2174
+ icon?: {
2175
+ className?: string | undefined;
2176
+ style?: CSSProperties | undefined;
2177
+ } | undefined;
2178
+ text?: {
2179
+ className?: string | undefined;
2180
+ style?: CSSProperties | undefined;
2181
+ } | undefined;
2182
+ } | undefined;
2183
+ content?: {
2184
+ container?: {
2185
+ className?: string | undefined;
2186
+ style?: CSSProperties | undefined;
2187
+ } | undefined;
2188
+ item?: {
2189
+ className?: string | undefined;
2190
+ style?: CSSProperties | undefined;
2191
+ } | undefined;
2192
+ } | undefined;
2193
+ }, {
2194
+ button?: {
2195
+ container?: {
2196
+ className?: string | undefined;
2197
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2198
+ } | undefined;
2199
+ icon?: {
2200
+ className?: string | undefined;
2201
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2202
+ } | undefined;
2203
+ text?: {
2204
+ className?: string | undefined;
2205
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2206
+ } | undefined;
2207
+ } | undefined;
2208
+ content?: {
2209
+ container?: {
2210
+ className?: string | undefined;
2211
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2212
+ } | undefined;
2213
+ item?: {
2214
+ className?: string | undefined;
2215
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2216
+ } | undefined;
2217
+ } | undefined;
2218
+ }>>;
2219
+ }, "strip", z.ZodTypeAny, {
2220
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
2221
+ className?: string | undefined;
2222
+ style?: CSSProperties | undefined;
2223
+ } | undefined>>;
2224
+ button?: {
2225
+ className?: string | undefined;
2226
+ style?: CSSProperties | undefined;
2227
+ } | undefined;
2228
+ image?: {
2229
+ image?: {
2230
+ className?: string | undefined;
2231
+ style?: CSSProperties | undefined;
2232
+ } | undefined;
2233
+ placeholder?: {
2234
+ className?: string | undefined;
2235
+ style?: CSSProperties | undefined;
2236
+ } | undefined;
2237
+ } | undefined;
2238
+ audio?: {
2239
+ className?: string | undefined;
2240
+ style?: CSSProperties | undefined;
2241
+ } | undefined;
2242
+ video?: {
2243
+ className?: string | undefined;
2244
+ style?: CSSProperties | undefined;
2245
+ } | undefined;
2246
+ file?: {
2247
+ container?: {
2248
+ className?: string | undefined;
2249
+ style?: CSSProperties | undefined;
2250
+ } | undefined;
2251
+ title?: {
2252
+ className?: string | undefined;
2253
+ style?: CSSProperties | undefined;
2254
+ } | undefined;
2255
+ icon?: {
2256
+ className?: string | undefined;
2257
+ style?: CSSProperties | undefined;
2258
+ } | undefined;
2259
+ } | undefined;
2260
+ location?: {
2261
+ container?: {
2262
+ className?: string | undefined;
2263
+ style?: CSSProperties | undefined;
2264
+ } | undefined;
2265
+ title?: {
2266
+ className?: string | undefined;
2267
+ style?: CSSProperties | undefined;
2268
+ } | undefined;
2269
+ icon?: {
2270
+ className?: string | undefined;
2271
+ style?: CSSProperties | undefined;
2272
+ } | undefined;
2273
+ } | undefined;
2274
+ column?: {
2275
+ className?: string | undefined;
2276
+ style?: CSSProperties | undefined;
2277
+ } | undefined;
2278
+ row?: {
2279
+ className?: string | undefined;
2280
+ style?: CSSProperties | undefined;
2281
+ } | undefined;
2282
+ bubble?: {
2283
+ className?: string | undefined;
2284
+ style?: CSSProperties | undefined;
2285
+ } | undefined;
2286
+ carousel?: {
2287
+ container?: {
2288
+ className?: string | undefined;
2289
+ style?: CSSProperties | undefined;
2290
+ } | undefined;
2291
+ slidesContainer?: {
2292
+ className?: string | undefined;
2293
+ style?: CSSProperties | undefined;
2294
+ } | undefined;
2295
+ backButton?: {
2296
+ className?: string | undefined;
2297
+ style?: CSSProperties | undefined;
2298
+ } | undefined;
2299
+ nextButton?: {
2300
+ className?: string | undefined;
2301
+ style?: CSSProperties | undefined;
2302
+ } | undefined;
2303
+ } | undefined;
2304
+ dropdown?: {
2305
+ button?: {
2306
+ container?: {
2307
+ className?: string | undefined;
2308
+ style?: CSSProperties | undefined;
2309
+ } | undefined;
2310
+ icon?: {
2311
+ className?: string | undefined;
2312
+ style?: CSSProperties | undefined;
2313
+ } | undefined;
2314
+ text?: {
2315
+ className?: string | undefined;
2316
+ style?: CSSProperties | undefined;
2317
+ } | undefined;
2318
+ } | undefined;
2319
+ content?: {
2320
+ container?: {
2321
+ className?: string | undefined;
2322
+ style?: CSSProperties | undefined;
2323
+ } | undefined;
2324
+ item?: {
2325
+ className?: string | undefined;
2326
+ style?: CSSProperties | undefined;
2327
+ } | undefined;
2328
+ } | undefined;
2329
+ } | undefined;
2330
+ }, {
2331
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
2332
+ className?: string | undefined;
2333
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2334
+ } | undefined>>;
2335
+ button?: {
2336
+ className?: string | undefined;
2337
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2338
+ } | undefined;
2339
+ image?: {
2340
+ image?: {
2341
+ className?: string | undefined;
2342
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2343
+ } | undefined;
2344
+ placeholder?: {
2345
+ className?: string | undefined;
2346
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2347
+ } | undefined;
2348
+ } | undefined;
2349
+ audio?: {
2350
+ className?: string | undefined;
2351
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2352
+ } | undefined;
2353
+ video?: {
2354
+ className?: string | undefined;
2355
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2356
+ } | undefined;
2357
+ file?: {
2358
+ container?: {
2359
+ className?: string | undefined;
2360
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2361
+ } | undefined;
2362
+ title?: {
2363
+ className?: string | undefined;
2364
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2365
+ } | undefined;
2366
+ icon?: {
2367
+ className?: string | undefined;
2368
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2369
+ } | undefined;
2370
+ } | undefined;
2371
+ location?: {
2372
+ container?: {
2373
+ className?: string | undefined;
2374
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2375
+ } | undefined;
2376
+ title?: {
2377
+ className?: string | undefined;
2378
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2379
+ } | undefined;
2380
+ icon?: {
2381
+ className?: string | undefined;
2382
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2383
+ } | undefined;
2384
+ } | undefined;
2385
+ column?: {
2386
+ className?: string | undefined;
2387
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2388
+ } | undefined;
2389
+ row?: {
2390
+ className?: string | undefined;
2391
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2392
+ } | undefined;
2393
+ bubble?: {
2394
+ className?: string | undefined;
2395
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2396
+ } | undefined;
2397
+ carousel?: {
2398
+ container?: {
2399
+ className?: string | undefined;
2400
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2401
+ } | undefined;
2402
+ slidesContainer?: {
2403
+ className?: string | undefined;
2404
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2405
+ } | undefined;
2406
+ backButton?: {
2407
+ className?: string | undefined;
2408
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2409
+ } | undefined;
2410
+ nextButton?: {
2411
+ className?: string | undefined;
2412
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2413
+ } | undefined;
2414
+ } | undefined;
2415
+ dropdown?: {
2416
+ button?: {
2417
+ container?: {
2418
+ className?: string | undefined;
2419
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2420
+ } | undefined;
2421
+ icon?: {
2422
+ className?: string | undefined;
2423
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2424
+ } | undefined;
2425
+ text?: {
2426
+ className?: string | undefined;
2427
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2428
+ } | undefined;
2429
+ } | undefined;
2430
+ content?: {
2431
+ container?: {
2432
+ className?: string | undefined;
2433
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2434
+ } | undefined;
2435
+ item?: {
2436
+ className?: string | undefined;
2437
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2438
+ } | undefined;
2439
+ } | undefined;
2440
+ } | undefined;
2441
+ }>>;
2442
+ }, "strip", z.ZodTypeAny, {
2443
+ container?: {
2444
+ className?: string | undefined;
2445
+ style?: CSSProperties | undefined;
2446
+ } | undefined;
2447
+ avatar?: {
2448
+ container?: {
2449
+ className?: string | undefined;
2450
+ style?: CSSProperties | undefined;
2451
+ } | undefined;
2452
+ image?: {
2453
+ className?: string | undefined;
2454
+ style?: CSSProperties | undefined;
2455
+ } | undefined;
2456
+ fallback?: {
2457
+ className?: string | undefined;
2458
+ style?: CSSProperties | undefined;
2459
+ } | undefined;
2460
+ } | undefined;
2461
+ blocks?: {
2462
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
2463
+ className?: string | undefined;
2464
+ style?: CSSProperties | undefined;
2465
+ } | undefined>>;
2466
+ button?: {
2467
+ className?: string | undefined;
2468
+ style?: CSSProperties | undefined;
2469
+ } | undefined;
2470
+ image?: {
2471
+ image?: {
2472
+ className?: string | undefined;
2473
+ style?: CSSProperties | undefined;
2474
+ } | undefined;
2475
+ placeholder?: {
2476
+ className?: string | undefined;
2477
+ style?: CSSProperties | undefined;
2478
+ } | undefined;
2479
+ } | undefined;
2480
+ audio?: {
2481
+ className?: string | undefined;
2482
+ style?: CSSProperties | undefined;
2483
+ } | undefined;
2484
+ video?: {
2485
+ className?: string | undefined;
2486
+ style?: CSSProperties | undefined;
2487
+ } | undefined;
2488
+ file?: {
2489
+ container?: {
2490
+ className?: string | undefined;
2491
+ style?: CSSProperties | undefined;
2492
+ } | undefined;
2493
+ title?: {
2494
+ className?: string | undefined;
2495
+ style?: CSSProperties | undefined;
2496
+ } | undefined;
2497
+ icon?: {
2498
+ className?: string | undefined;
2499
+ style?: CSSProperties | undefined;
2500
+ } | undefined;
2501
+ } | undefined;
2502
+ location?: {
2503
+ container?: {
2504
+ className?: string | undefined;
2505
+ style?: CSSProperties | undefined;
2506
+ } | undefined;
2507
+ title?: {
2508
+ className?: string | undefined;
2509
+ style?: CSSProperties | undefined;
2510
+ } | undefined;
2511
+ icon?: {
2512
+ className?: string | undefined;
2513
+ style?: CSSProperties | undefined;
2514
+ } | undefined;
2515
+ } | undefined;
2516
+ column?: {
2517
+ className?: string | undefined;
2518
+ style?: CSSProperties | undefined;
2519
+ } | undefined;
2520
+ row?: {
2521
+ className?: string | undefined;
2522
+ style?: CSSProperties | undefined;
2523
+ } | undefined;
2524
+ bubble?: {
2525
+ className?: string | undefined;
2526
+ style?: CSSProperties | undefined;
2527
+ } | undefined;
2528
+ carousel?: {
2529
+ container?: {
2530
+ className?: string | undefined;
2531
+ style?: CSSProperties | undefined;
2532
+ } | undefined;
2533
+ slidesContainer?: {
2534
+ className?: string | undefined;
2535
+ style?: CSSProperties | undefined;
2536
+ } | undefined;
2537
+ backButton?: {
2538
+ className?: string | undefined;
2539
+ style?: CSSProperties | undefined;
2540
+ } | undefined;
2541
+ nextButton?: {
2542
+ className?: string | undefined;
2543
+ style?: CSSProperties | undefined;
2544
+ } | undefined;
2545
+ } | undefined;
2546
+ dropdown?: {
2547
+ button?: {
2548
+ container?: {
2549
+ className?: string | undefined;
2550
+ style?: CSSProperties | undefined;
2551
+ } | undefined;
2552
+ icon?: {
2553
+ className?: string | undefined;
2554
+ style?: CSSProperties | undefined;
2555
+ } | undefined;
2556
+ text?: {
2557
+ className?: string | undefined;
2558
+ style?: CSSProperties | undefined;
2559
+ } | undefined;
2560
+ } | undefined;
2561
+ content?: {
2562
+ container?: {
2563
+ className?: string | undefined;
2564
+ style?: CSSProperties | undefined;
2565
+ } | undefined;
2566
+ item?: {
2567
+ className?: string | undefined;
2568
+ style?: CSSProperties | undefined;
2569
+ } | undefined;
2570
+ } | undefined;
2571
+ } | undefined;
2572
+ } | undefined;
2573
+ }, {
2574
+ container?: {
2575
+ className?: string | undefined;
2576
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2577
+ } | undefined;
2578
+ avatar?: {
2579
+ container?: {
2580
+ className?: string | undefined;
2581
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2582
+ } | undefined;
2583
+ image?: {
2584
+ className?: string | undefined;
2585
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2586
+ } | undefined;
2587
+ fallback?: {
2588
+ className?: string | undefined;
2589
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2590
+ } | undefined;
2591
+ } | undefined;
2592
+ blocks?: {
2593
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
2594
+ className?: string | undefined;
2595
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2596
+ } | undefined>>;
2597
+ button?: {
2598
+ className?: string | undefined;
2599
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2600
+ } | undefined;
2601
+ image?: {
2602
+ image?: {
2603
+ className?: string | undefined;
2604
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2605
+ } | undefined;
2606
+ placeholder?: {
2607
+ className?: string | undefined;
2608
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2609
+ } | undefined;
2610
+ } | undefined;
2611
+ audio?: {
2612
+ className?: string | undefined;
2613
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2614
+ } | undefined;
2615
+ video?: {
2616
+ className?: string | undefined;
2617
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2618
+ } | undefined;
2619
+ file?: {
2620
+ container?: {
2621
+ className?: string | undefined;
2622
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2623
+ } | undefined;
2624
+ title?: {
2625
+ className?: string | undefined;
2626
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2627
+ } | undefined;
2628
+ icon?: {
2629
+ className?: string | undefined;
2630
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2631
+ } | undefined;
2632
+ } | undefined;
2633
+ location?: {
2634
+ container?: {
2635
+ className?: string | undefined;
2636
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2637
+ } | undefined;
2638
+ title?: {
2639
+ className?: string | undefined;
2640
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2641
+ } | undefined;
2642
+ icon?: {
2643
+ className?: string | undefined;
2644
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2645
+ } | undefined;
2646
+ } | undefined;
2647
+ column?: {
2648
+ className?: string | undefined;
2649
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2650
+ } | undefined;
2651
+ row?: {
2652
+ className?: string | undefined;
2653
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2654
+ } | undefined;
2655
+ bubble?: {
2656
+ className?: string | undefined;
2657
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2658
+ } | undefined;
2659
+ carousel?: {
2660
+ container?: {
2661
+ className?: string | undefined;
2662
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2663
+ } | undefined;
2664
+ slidesContainer?: {
2665
+ className?: string | undefined;
2666
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2667
+ } | undefined;
2668
+ backButton?: {
2669
+ className?: string | undefined;
2670
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2671
+ } | undefined;
2672
+ nextButton?: {
2673
+ className?: string | undefined;
2674
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2675
+ } | undefined;
2676
+ } | undefined;
2677
+ dropdown?: {
2678
+ button?: {
2679
+ container?: {
2680
+ className?: string | undefined;
2681
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2682
+ } | undefined;
2683
+ icon?: {
2684
+ className?: string | undefined;
2685
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2686
+ } | undefined;
2687
+ text?: {
2688
+ className?: string | undefined;
2689
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2690
+ } | undefined;
2691
+ } | undefined;
2692
+ content?: {
2693
+ container?: {
2694
+ className?: string | undefined;
2695
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2696
+ } | undefined;
2697
+ item?: {
2698
+ className?: string | undefined;
2699
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2700
+ } | undefined;
2701
+ } | undefined;
2702
+ } | undefined;
2703
+ } | undefined;
2704
+ }>>;
2705
+ loadingIndicator: z.ZodOptional<z.ZodObject<{
2706
+ container: z.ZodOptional<z.ZodObject<{
2707
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2708
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2709
+ }, "strip", z.ZodTypeAny, {
2710
+ className?: string | undefined;
2711
+ style?: CSSProperties | undefined;
2712
+ }, {
2713
+ className?: string | undefined;
2714
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2715
+ }>>;
2716
+ loader: z.ZodOptional<z.ZodObject<{
2717
+ className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
2718
+ style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
2719
+ }, "strip", z.ZodTypeAny, {
2720
+ className?: string | undefined;
2721
+ style?: CSSProperties | undefined;
2722
+ }, {
2723
+ className?: string | undefined;
2724
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2725
+ }>>;
2726
+ }, "strip", z.ZodTypeAny, {
2727
+ container?: {
2728
+ className?: string | undefined;
2729
+ style?: CSSProperties | undefined;
2730
+ } | undefined;
2731
+ loader?: {
2732
+ className?: string | undefined;
2733
+ style?: CSSProperties | undefined;
2734
+ } | undefined;
2735
+ }, {
2736
+ container?: {
2737
+ className?: string | undefined;
2738
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2739
+ } | undefined;
2740
+ loader?: {
2741
+ className?: string | undefined;
2742
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
2743
+ } | undefined;
2744
+ }>>;
2745
+ }, "strip", z.ZodTypeAny, {
2746
+ container?: {
2747
+ className?: string | undefined;
2748
+ style?: CSSProperties | undefined;
2749
+ } | undefined;
2750
+ modal?: {
2751
+ overlay?: {
2752
+ className?: string | undefined;
2753
+ style?: CSSProperties | undefined;
2754
+ } | undefined;
2755
+ container?: {
2756
+ className?: string | undefined;
2757
+ style?: CSSProperties | undefined;
2758
+ } | undefined;
2759
+ dialog?: {
2760
+ container?: {
2761
+ className?: string | undefined;
2762
+ style?: CSSProperties | undefined;
2763
+ } | undefined;
2764
+ title?: {
2765
+ container?: {
2766
+ className?: string | undefined;
2767
+ style?: CSSProperties | undefined;
2768
+ } | undefined;
2769
+ text?: {
2770
+ className?: string | undefined;
2771
+ style?: CSSProperties | undefined;
2772
+ } | undefined;
2773
+ closeIcon?: {
2774
+ className?: string | undefined;
2775
+ style?: CSSProperties | undefined;
2776
+ } | undefined;
2777
+ } | undefined;
2778
+ content?: {
2779
+ className?: string | undefined;
2780
+ style?: CSSProperties | undefined;
2781
+ } | undefined;
2782
+ } | undefined;
2783
+ } | undefined;
2784
+ notification?: {
2785
+ container?: {
2786
+ className?: string | undefined;
2787
+ style?: CSSProperties | undefined;
2788
+ } | undefined;
2789
+ title?: {
2790
+ className?: string | undefined;
2791
+ style?: CSSProperties | undefined;
2792
+ } | undefined;
2793
+ description?: {
2794
+ className?: string | undefined;
2795
+ style?: CSSProperties | undefined;
2796
+ } | undefined;
2797
+ icon?: {
2798
+ className?: string | undefined;
2799
+ style?: CSSProperties | undefined;
2800
+ } | undefined;
2801
+ closeIcon?: {
2802
+ className?: string | undefined;
2803
+ style?: CSSProperties | undefined;
2804
+ } | undefined;
2805
+ } | undefined;
2806
+ header?: {
2807
+ content: {
2808
+ container?: {
2809
+ className?: string | undefined;
2810
+ style?: CSSProperties | undefined;
2811
+ } | undefined;
2812
+ title?: {
2813
+ className?: string | undefined;
2814
+ style?: CSSProperties | undefined;
2815
+ } | undefined;
2816
+ description?: {
2817
+ className?: string | undefined;
2818
+ style?: CSSProperties | undefined;
2819
+ } | undefined;
2820
+ avatar?: {
2821
+ container?: {
2822
+ className?: string | undefined;
2823
+ style?: CSSProperties | undefined;
2824
+ } | undefined;
2825
+ image?: {
2826
+ className?: string | undefined;
2827
+ style?: CSSProperties | undefined;
2828
+ } | undefined;
2829
+ fallback?: {
2830
+ className?: string | undefined;
2831
+ style?: CSSProperties | undefined;
2832
+ } | undefined;
2833
+ } | undefined;
2834
+ actions?: {
2835
+ container?: {
2836
+ className?: string | undefined;
2837
+ style?: CSSProperties | undefined;
2838
+ } | undefined;
2839
+ icons?: {
2840
+ className?: string | undefined;
2841
+ style?: CSSProperties | undefined;
2842
+ } | undefined;
2843
+ } | undefined;
2844
+ };
2845
+ container?: {
2846
+ className?: string | undefined;
2847
+ style?: CSSProperties | undefined;
2848
+ } | undefined;
2849
+ expandedContent?: {
2850
+ container?: {
2851
+ className?: string | undefined;
2852
+ style?: CSSProperties | undefined;
2853
+ } | undefined;
2854
+ descriptionItems?: {
2855
+ container?: {
2856
+ className?: string | undefined;
2857
+ style?: CSSProperties | undefined;
2858
+ } | undefined;
2859
+ icon?: {
2860
+ className?: string | undefined;
2861
+ style?: CSSProperties | undefined;
2862
+ } | undefined;
2863
+ text?: {
2864
+ className?: string | undefined;
2865
+ style?: CSSProperties | undefined;
2866
+ } | undefined;
2867
+ link?: {
2868
+ className?: string | undefined;
2869
+ style?: CSSProperties | undefined;
2870
+ } | undefined;
2871
+ } | undefined;
2872
+ } | undefined;
2873
+ description?: {
2874
+ container?: {
2875
+ className?: string | undefined;
2876
+ style?: CSSProperties | undefined;
2877
+ } | undefined;
2878
+ title?: {
2879
+ className?: string | undefined;
2880
+ style?: CSSProperties | undefined;
2881
+ } | undefined;
2882
+ subtitle?: {
2883
+ className?: string | undefined;
2884
+ style?: CSSProperties | undefined;
2885
+ } | undefined;
2886
+ } | undefined;
2887
+ newConversationIcon?: {
2888
+ className?: string | undefined;
2889
+ style?: CSSProperties | undefined;
2890
+ } | undefined;
2891
+ } | undefined;
2892
+ composer?: {
2893
+ container?: {
2894
+ className?: string | undefined;
2895
+ style?: CSSProperties | undefined;
2896
+ } | undefined;
2897
+ input?: {
2898
+ className?: string | undefined;
2899
+ style?: CSSProperties | undefined;
2900
+ } | undefined;
2901
+ button?: {
2902
+ container?: {
2903
+ className?: string | undefined;
2904
+ style?: CSSProperties | undefined;
2905
+ } | undefined;
2906
+ icon?: {
2907
+ className?: string | undefined;
2908
+ style?: CSSProperties | undefined;
2909
+ } | undefined;
2910
+ } | undefined;
2911
+ } | undefined;
2912
+ messageList?: {
2913
+ className?: string | undefined;
2914
+ style?: CSSProperties | undefined;
2915
+ } | undefined;
2916
+ message?: {
2917
+ container?: {
2918
+ className?: string | undefined;
2919
+ style?: CSSProperties | undefined;
2920
+ } | undefined;
2921
+ avatar?: {
2922
+ container?: {
2923
+ className?: string | undefined;
2924
+ style?: CSSProperties | undefined;
2925
+ } | undefined;
2926
+ image?: {
2927
+ className?: string | undefined;
2928
+ style?: CSSProperties | undefined;
2929
+ } | undefined;
2930
+ fallback?: {
2931
+ className?: string | undefined;
2932
+ style?: CSSProperties | undefined;
2933
+ } | undefined;
2934
+ } | undefined;
2935
+ blocks?: {
2936
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
2937
+ className?: string | undefined;
2938
+ style?: CSSProperties | undefined;
2939
+ } | undefined>>;
2940
+ button?: {
2941
+ className?: string | undefined;
2942
+ style?: CSSProperties | undefined;
2943
+ } | undefined;
2944
+ image?: {
2945
+ image?: {
2946
+ className?: string | undefined;
2947
+ style?: CSSProperties | undefined;
2948
+ } | undefined;
2949
+ placeholder?: {
2950
+ className?: string | undefined;
2951
+ style?: CSSProperties | undefined;
2952
+ } | undefined;
2953
+ } | undefined;
2954
+ audio?: {
2955
+ className?: string | undefined;
2956
+ style?: CSSProperties | undefined;
2957
+ } | undefined;
2958
+ video?: {
2959
+ className?: string | undefined;
2960
+ style?: CSSProperties | undefined;
2961
+ } | undefined;
2962
+ file?: {
2963
+ container?: {
2964
+ className?: string | undefined;
2965
+ style?: CSSProperties | undefined;
2966
+ } | undefined;
2967
+ title?: {
2968
+ className?: string | undefined;
2969
+ style?: CSSProperties | undefined;
2970
+ } | undefined;
2971
+ icon?: {
2972
+ className?: string | undefined;
2973
+ style?: CSSProperties | undefined;
2974
+ } | undefined;
2975
+ } | undefined;
2976
+ location?: {
2977
+ container?: {
2978
+ className?: string | undefined;
2979
+ style?: CSSProperties | undefined;
2980
+ } | undefined;
2981
+ title?: {
2982
+ className?: string | undefined;
2983
+ style?: CSSProperties | undefined;
2984
+ } | undefined;
2985
+ icon?: {
2986
+ className?: string | undefined;
2987
+ style?: CSSProperties | undefined;
2988
+ } | undefined;
2989
+ } | undefined;
2990
+ column?: {
2991
+ className?: string | undefined;
2992
+ style?: CSSProperties | undefined;
2993
+ } | undefined;
2994
+ row?: {
2995
+ className?: string | undefined;
2996
+ style?: CSSProperties | undefined;
2997
+ } | undefined;
2998
+ bubble?: {
2999
+ className?: string | undefined;
3000
+ style?: CSSProperties | undefined;
3001
+ } | undefined;
3002
+ carousel?: {
3003
+ container?: {
3004
+ className?: string | undefined;
3005
+ style?: CSSProperties | undefined;
3006
+ } | undefined;
3007
+ slidesContainer?: {
3008
+ className?: string | undefined;
3009
+ style?: CSSProperties | undefined;
3010
+ } | undefined;
3011
+ backButton?: {
3012
+ className?: string | undefined;
3013
+ style?: CSSProperties | undefined;
3014
+ } | undefined;
3015
+ nextButton?: {
3016
+ className?: string | undefined;
3017
+ style?: CSSProperties | undefined;
3018
+ } | undefined;
3019
+ } | undefined;
3020
+ dropdown?: {
3021
+ button?: {
3022
+ container?: {
3023
+ className?: string | undefined;
3024
+ style?: CSSProperties | undefined;
3025
+ } | undefined;
3026
+ icon?: {
3027
+ className?: string | undefined;
3028
+ style?: CSSProperties | undefined;
3029
+ } | undefined;
3030
+ text?: {
3031
+ className?: string | undefined;
3032
+ style?: CSSProperties | undefined;
3033
+ } | undefined;
3034
+ } | undefined;
3035
+ content?: {
3036
+ container?: {
3037
+ className?: string | undefined;
3038
+ style?: CSSProperties | undefined;
3039
+ } | undefined;
3040
+ item?: {
3041
+ className?: string | undefined;
3042
+ style?: CSSProperties | undefined;
3043
+ } | undefined;
3044
+ } | undefined;
3045
+ } | undefined;
3046
+ } | undefined;
3047
+ } | undefined;
3048
+ loadingIndicator?: {
3049
+ container?: {
3050
+ className?: string | undefined;
3051
+ style?: CSSProperties | undefined;
3052
+ } | undefined;
3053
+ loader?: {
3054
+ className?: string | undefined;
3055
+ style?: CSSProperties | undefined;
3056
+ } | undefined;
3057
+ } | undefined;
3058
+ }, {
3059
+ container?: {
3060
+ className?: string | undefined;
3061
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3062
+ } | undefined;
3063
+ modal?: {
3064
+ overlay?: {
3065
+ className?: string | undefined;
3066
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3067
+ } | undefined;
3068
+ container?: {
3069
+ className?: string | undefined;
3070
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3071
+ } | undefined;
3072
+ dialog?: {
3073
+ container?: {
3074
+ className?: string | undefined;
3075
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3076
+ } | undefined;
3077
+ title?: {
3078
+ container?: {
3079
+ className?: string | undefined;
3080
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3081
+ } | undefined;
3082
+ text?: {
3083
+ className?: string | undefined;
3084
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3085
+ } | undefined;
3086
+ closeIcon?: {
3087
+ className?: string | undefined;
3088
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3089
+ } | undefined;
3090
+ } | undefined;
3091
+ content?: {
3092
+ className?: string | undefined;
3093
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3094
+ } | undefined;
3095
+ } | undefined;
3096
+ } | undefined;
3097
+ notification?: {
3098
+ container?: {
3099
+ className?: string | undefined;
3100
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3101
+ } | undefined;
3102
+ title?: {
3103
+ className?: string | undefined;
3104
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3105
+ } | undefined;
3106
+ description?: {
3107
+ className?: string | undefined;
3108
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3109
+ } | undefined;
3110
+ icon?: {
3111
+ className?: string | undefined;
3112
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3113
+ } | undefined;
3114
+ closeIcon?: {
3115
+ className?: string | undefined;
3116
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3117
+ } | undefined;
3118
+ } | undefined;
3119
+ header?: {
3120
+ content: {
3121
+ container?: {
3122
+ className?: string | undefined;
3123
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3124
+ } | undefined;
3125
+ title?: {
3126
+ className?: string | undefined;
3127
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3128
+ } | undefined;
3129
+ description?: {
3130
+ className?: string | undefined;
3131
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3132
+ } | undefined;
3133
+ avatar?: {
3134
+ container?: {
3135
+ className?: string | undefined;
3136
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3137
+ } | undefined;
3138
+ image?: {
3139
+ className?: string | undefined;
3140
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3141
+ } | undefined;
3142
+ fallback?: {
3143
+ className?: string | undefined;
3144
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3145
+ } | undefined;
3146
+ } | undefined;
3147
+ actions?: {
3148
+ container?: {
3149
+ className?: string | undefined;
3150
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3151
+ } | undefined;
3152
+ icons?: {
3153
+ className?: string | undefined;
3154
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3155
+ } | undefined;
3156
+ } | undefined;
3157
+ };
3158
+ container?: {
3159
+ className?: string | undefined;
3160
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3161
+ } | undefined;
3162
+ expandedContent?: {
3163
+ container?: {
3164
+ className?: string | undefined;
3165
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3166
+ } | undefined;
3167
+ descriptionItems?: {
3168
+ container?: {
3169
+ className?: string | undefined;
3170
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3171
+ } | undefined;
3172
+ icon?: {
3173
+ className?: string | undefined;
3174
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3175
+ } | undefined;
3176
+ text?: {
3177
+ className?: string | undefined;
3178
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3179
+ } | undefined;
3180
+ link?: {
3181
+ className?: string | undefined;
3182
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3183
+ } | undefined;
3184
+ } | undefined;
3185
+ } | undefined;
3186
+ description?: {
3187
+ container?: {
3188
+ className?: string | undefined;
3189
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3190
+ } | undefined;
3191
+ title?: {
3192
+ className?: string | undefined;
3193
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3194
+ } | undefined;
3195
+ subtitle?: {
3196
+ className?: string | undefined;
3197
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3198
+ } | undefined;
3199
+ } | undefined;
3200
+ newConversationIcon?: {
3201
+ className?: string | undefined;
3202
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3203
+ } | undefined;
3204
+ } | undefined;
3205
+ composer?: {
3206
+ container?: {
3207
+ className?: string | undefined;
3208
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3209
+ } | undefined;
3210
+ input?: {
3211
+ className?: string | undefined;
3212
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3213
+ } | undefined;
3214
+ button?: {
3215
+ container?: {
3216
+ className?: string | undefined;
3217
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3218
+ } | undefined;
3219
+ icon?: {
3220
+ className?: string | undefined;
3221
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3222
+ } | undefined;
3223
+ } | undefined;
3224
+ } | undefined;
3225
+ messageList?: {
3226
+ className?: string | undefined;
3227
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3228
+ } | undefined;
3229
+ message?: {
3230
+ container?: {
3231
+ className?: string | undefined;
3232
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3233
+ } | undefined;
3234
+ avatar?: {
3235
+ container?: {
3236
+ className?: string | undefined;
3237
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3238
+ } | undefined;
3239
+ image?: {
3240
+ className?: string | undefined;
3241
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3242
+ } | undefined;
3243
+ fallback?: {
3244
+ className?: string | undefined;
3245
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3246
+ } | undefined;
3247
+ } | undefined;
3248
+ blocks?: {
3249
+ text: Partial<Record<"link" | "pre" | "text" | "bold" | "italic" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "orderedList" | "unorderedList" | "listItem" | "lineBreak", {
3250
+ className?: string | undefined;
3251
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3252
+ } | undefined>>;
3253
+ button?: {
3254
+ className?: string | undefined;
3255
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3256
+ } | undefined;
3257
+ image?: {
3258
+ image?: {
3259
+ className?: string | undefined;
3260
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3261
+ } | undefined;
3262
+ placeholder?: {
3263
+ className?: string | undefined;
3264
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3265
+ } | undefined;
3266
+ } | undefined;
3267
+ audio?: {
3268
+ className?: string | undefined;
3269
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3270
+ } | undefined;
3271
+ video?: {
3272
+ className?: string | undefined;
3273
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3274
+ } | undefined;
3275
+ file?: {
3276
+ container?: {
3277
+ className?: string | undefined;
3278
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3279
+ } | undefined;
3280
+ title?: {
3281
+ className?: string | undefined;
3282
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3283
+ } | undefined;
3284
+ icon?: {
3285
+ className?: string | undefined;
3286
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3287
+ } | undefined;
3288
+ } | undefined;
3289
+ location?: {
3290
+ container?: {
3291
+ className?: string | undefined;
3292
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3293
+ } | undefined;
3294
+ title?: {
3295
+ className?: string | undefined;
3296
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3297
+ } | undefined;
3298
+ icon?: {
3299
+ className?: string | undefined;
3300
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3301
+ } | undefined;
3302
+ } | undefined;
3303
+ column?: {
3304
+ className?: string | undefined;
3305
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3306
+ } | undefined;
3307
+ row?: {
3308
+ className?: string | undefined;
3309
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3310
+ } | undefined;
3311
+ bubble?: {
3312
+ className?: string | undefined;
3313
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3314
+ } | undefined;
3315
+ carousel?: {
3316
+ container?: {
3317
+ className?: string | undefined;
3318
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3319
+ } | undefined;
3320
+ slidesContainer?: {
3321
+ className?: string | undefined;
3322
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3323
+ } | undefined;
3324
+ backButton?: {
3325
+ className?: string | undefined;
3326
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3327
+ } | undefined;
3328
+ nextButton?: {
3329
+ className?: string | undefined;
3330
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3331
+ } | undefined;
3332
+ } | undefined;
3333
+ dropdown?: {
3334
+ button?: {
3335
+ container?: {
3336
+ className?: string | undefined;
3337
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3338
+ } | undefined;
3339
+ icon?: {
3340
+ className?: string | undefined;
3341
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3342
+ } | undefined;
3343
+ text?: {
3344
+ className?: string | undefined;
3345
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3346
+ } | undefined;
3347
+ } | undefined;
3348
+ content?: {
3349
+ container?: {
3350
+ className?: string | undefined;
3351
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3352
+ } | undefined;
3353
+ item?: {
3354
+ className?: string | undefined;
3355
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3356
+ } | undefined;
3357
+ } | undefined;
3358
+ } | undefined;
3359
+ } | undefined;
3360
+ } | undefined;
3361
+ loadingIndicator?: {
3362
+ container?: {
3363
+ className?: string | undefined;
3364
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3365
+ } | undefined;
3366
+ loader?: {
3367
+ className?: string | undefined;
3368
+ style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
3369
+ } | undefined;
3370
+ } | undefined;
3371
+ }>;