@botpress/webchat 1.1.1 → 1.3.0

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