@inkeep/cxkit-styled 0.5.15 → 0.5.16

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 (61) hide show
  1. package/dist/index.d.cts +940 -3
  2. package/dist/index.d.ts +940 -3
  3. package/package.json +4 -4
  4. package/dist/components/chat-button.d.cts +0 -8
  5. package/dist/components/chat-button.d.ts +0 -8
  6. package/dist/components/embedded-chat/conversation-loading.d.cts +0 -1
  7. package/dist/components/embedded-chat/conversation-loading.d.ts +0 -1
  8. package/dist/components/embedded-chat.d.cts +0 -183
  9. package/dist/components/embedded-chat.d.ts +0 -183
  10. package/dist/components/embedded-search/results-loading.d.cts +0 -1
  11. package/dist/components/embedded-search/results-loading.d.ts +0 -1
  12. package/dist/components/embedded-search.d.cts +0 -54
  13. package/dist/components/embedded-search.d.ts +0 -54
  14. package/dist/components/index.d.cts +0 -8
  15. package/dist/components/index.d.ts +0 -8
  16. package/dist/components/intelligent-form.d.cts +0 -60
  17. package/dist/components/intelligent-form.d.ts +0 -60
  18. package/dist/components/loading-indicator.d.cts +0 -1
  19. package/dist/components/loading-indicator.d.ts +0 -1
  20. package/dist/components/modal.d.cts +0 -6
  21. package/dist/components/modal.d.ts +0 -6
  22. package/dist/components/searchbar.d.cts +0 -11
  23. package/dist/components/searchbar.d.ts +0 -11
  24. package/dist/components/shadow.d.cts +0 -3
  25. package/dist/components/shadow.d.ts +0 -3
  26. package/dist/ui/markdown-styles.d.cts +0 -20
  27. package/dist/ui/markdown-styles.d.ts +0 -20
  28. package/dist/ui/recipes/ai-chat-page-wrapper.d.cts +0 -7
  29. package/dist/ui/recipes/ai-chat-page-wrapper.d.ts +0 -7
  30. package/dist/ui/recipes/attachment.d.cts +0 -4
  31. package/dist/ui/recipes/attachment.d.ts +0 -4
  32. package/dist/ui/recipes/button.d.cts +0 -6
  33. package/dist/ui/recipes/button.d.ts +0 -6
  34. package/dist/ui/recipes/checkbox.d.cts +0 -4
  35. package/dist/ui/recipes/checkbox.d.ts +0 -4
  36. package/dist/ui/recipes/citation.d.cts +0 -4
  37. package/dist/ui/recipes/citation.d.ts +0 -4
  38. package/dist/ui/recipes/icon.d.cts +0 -2
  39. package/dist/ui/recipes/icon.d.ts +0 -2
  40. package/dist/ui/recipes/index.d.cts +0 -15
  41. package/dist/ui/recipes/index.d.ts +0 -15
  42. package/dist/ui/recipes/input.d.cts +0 -5
  43. package/dist/ui/recipes/input.d.ts +0 -5
  44. package/dist/ui/recipes/link.d.cts +0 -2
  45. package/dist/ui/recipes/link.d.ts +0 -2
  46. package/dist/ui/recipes/markdown.d.cts +0 -16
  47. package/dist/ui/recipes/markdown.d.ts +0 -16
  48. package/dist/ui/recipes/modal.d.cts +0 -4
  49. package/dist/ui/recipes/modal.d.ts +0 -4
  50. package/dist/ui/recipes/popover.d.cts +0 -4
  51. package/dist/ui/recipes/popover.d.ts +0 -4
  52. package/dist/ui/recipes/scrollable.d.cts +0 -4
  53. package/dist/ui/recipes/scrollable.d.ts +0 -4
  54. package/dist/ui/recipes/select.d.cts +0 -4
  55. package/dist/ui/recipes/select.d.ts +0 -4
  56. package/dist/ui/recipes/skeleton.d.cts +0 -2
  57. package/dist/ui/recipes/skeleton.d.ts +0 -2
  58. package/dist/ui/recipes/widget-toggle.d.cts +0 -4
  59. package/dist/ui/recipes/widget-toggle.d.ts +0 -4
  60. package/dist/utils.d.cts +0 -4
  61. package/dist/utils.d.ts +0 -4
package/dist/index.d.cts CHANGED
@@ -1,3 +1,940 @@
1
- export * from './components';
2
- export * from './ui/recipes/widget-toggle';
3
- export * from '@inkeep/cxkit-primitives';
1
+ import { ChatButtonPrimitive } from '@inkeep/cxkit-primitives';
2
+ import { ChatProviderProps } from '@inkeep/cxkit-primitives';
3
+ import { ClassAttributes } from 'react';
4
+ import { ClassProp } from 'class-variance-authority/types';
5
+ import { ComponentPropsWithRef } from 'react';
6
+ import { DetailedHTMLProps } from 'react';
7
+ import { DialogProps } from '@inkeep/cxkit-primitives/src/atoms/dialog';
8
+ import { EmbeddedChatPrimitive } from '@inkeep/cxkit-primitives';
9
+ import { EmbeddedSearchPrimitive } from '@inkeep/cxkit-primitives';
10
+ import { FC } from 'react';
11
+ import { ForwardRefExoticComponent } from 'react';
12
+ import { HTMLAttributes } from 'react';
13
+ import { IconBaseProps } from 'react-icons/lib';
14
+ import { InkeepShadow } from '@inkeep/cxkit-primitives';
15
+ import { IntelligentFormPrimitive } from '@inkeep/cxkit-primitives';
16
+ import { JSX } from 'react/jsx-runtime';
17
+ import { MarkdownProps } from '@inkeep/cxkit-primitives/src/atoms/markdown';
18
+ import { MemoExoticComponent } from 'react';
19
+ import { ModalPrimitive } from '@inkeep/cxkit-primitives';
20
+ import { PolymorphicProps } from '@inkeep/cxkit-primitives';
21
+ import { RefAttributes } from 'react';
22
+ import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
23
+ import { ScrollAreaViewportProps } from '@radix-ui/react-scroll-area';
24
+ import { SearchBarPrimitive } from '@inkeep/cxkit-primitives';
25
+ import { SelectItemTextProps } from '@radix-ui/react-select';
26
+ import { SelectProps } from '@radix-ui/react-select';
27
+ import { SelectValueProps } from '@radix-ui/react-select';
28
+ import { TextareaAutosizeProps } from 'react-textarea-autosize';
29
+ import { TextareaHTMLAttributes } from 'react';
30
+ import { TooltipArrowProps } from '@radix-ui/react-tooltip';
31
+ import { TooltipProps } from '@radix-ui/react-tooltip';
32
+ import { VariantProps } from 'class-variance-authority';
33
+
34
+ declare const aiChatPageWrapper: (props?: ({
35
+ size?: "default" | "expand" | "shrink-vertically" | "full-viewport" | null | undefined;
36
+ variant?: "container-with-shadow" | "no-shadow" | null | undefined;
37
+ } & ClassProp) | undefined) => string;
38
+
39
+ declare type AiChatPageWrapperVariants = VariantProps<typeof aiChatPageWrapper>;
40
+
41
+ export declare namespace ChatButton {
42
+ export {
43
+ ChatButtonContainer as Container,
44
+ ChatButton_2 as ChatButton,
45
+ ChatButtonText,
46
+ ChatButtonAvatarImage,
47
+ ChatButtonAvatarContent
48
+ }
49
+ }
50
+
51
+ declare const ChatButton_2: ({ className, ...props }: ComponentPropsWithRef<typeof ChatButtonPrimitive.ChatButton>) => JSX.Element;
52
+
53
+ declare const ChatButtonAvatarContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof ChatButtonPrimitive.ChatButtonAvatarContent>) => JSX.Element;
54
+
55
+ declare const ChatButtonAvatarImage: ({ className, ...props }: React.ComponentPropsWithRef<typeof ChatButtonPrimitive.ChatButtonAvatarImage>) => JSX.Element;
56
+
57
+ declare const ChatButtonContainer: ({ className, ...props }: ComponentPropsWithRef<typeof ChatButtonPrimitive.ChatButtonContainer>) => JSX.Element;
58
+
59
+ declare const ChatButtonText: ({ className, ...props }: ComponentPropsWithRef<typeof ChatButtonPrimitive.ChatButtonText>) => JSX.Element;
60
+
61
+ export declare namespace EmbeddedChat {
62
+ export {
63
+ EmbeddedChatProvider as Provider,
64
+ EmbeddedChatWrapper as Wrapper,
65
+ EmbeddedChatConversationLoading as ConversationLoading,
66
+ EmbeddedChatRoot as Root,
67
+ EmbeddedChatHeader as Header,
68
+ EmbeddedChatHeaderToolbar as HeaderToolbar,
69
+ EmbeddedChatHeaderToolbarWrapper as HeaderToolbarWrapper,
70
+ EmbeddedChatToolbarHeader as ToolbarHeader,
71
+ EmbeddedChatContent as Content,
72
+ EmbeddedChatContentScrollArea as ContentScrollArea,
73
+ EmbeddedChatContentScrollAreaViewport as ContentScrollAreaViewport,
74
+ EmbeddedChatContentScrollAreaScrollbar as ContentScrollAreaScrollbar,
75
+ EmbeddedChatContentScrollAreaThumb as ContentScrollAreaThumb,
76
+ EmbeddedChatContentScrollAreaCorner as ContentScrollAreaCorner,
77
+ EmbeddedChatMessages as Messages,
78
+ EmbeddedChatMessageWrapper as MessageWrapper,
79
+ EmbeddedChatIntroMessageWrapper as IntroMessageWrapper,
80
+ EmbeddedChatDisclaimer as Disclaimer,
81
+ EmbeddedChatDisclaimerLabel as DisclaimerLabel,
82
+ EmbeddedChatDisclaimerTrigger as DisclaimerTrigger,
83
+ EmbeddedChatDisclaimerContent as DisclaimerContent,
84
+ EmbeddedChatDisclaimerText as DisclaimerText,
85
+ EmbeddedChatDisclaimerArrow as DisclaimerArrow,
86
+ EmbeddedChatQuickQuestions as QuickQuestions,
87
+ EmbeddedChatQuickQuestionsLabel as QuickQuestionsLabel,
88
+ EmbeddedChatQuickQuestionsList as QuickQuestionsList,
89
+ EmbeddedChatQuickQuestion as QuickQuestion,
90
+ EmbeddedChatQuickQuestionButton as QuickQuestionButton,
91
+ EmbeddedChatWorkflows as Workflows,
92
+ EmbeddedChatWorkflowsLabel as WorkflowsLabel,
93
+ EmbeddedChatWorkflowsList as WorkflowsList,
94
+ EmbeddedChatWorkflow as Workflow,
95
+ EmbeddedChatWorkflowIcon as WorkflowIcon,
96
+ EmbeddedChatMessageHeader as MessageHeader,
97
+ EmbeddedChatMessageLoading as MessageLoading,
98
+ EmbeddedChatMessageAvatar as MessageAvatar,
99
+ EmbeddedChatMessageAvatarContent as MessageAvatarContent,
100
+ EmbeddedChatMessageAvatarFallback as MessageAvatarFallback,
101
+ EmbeddedChatMessageAvatarImage as MessageAvatarImage,
102
+ EmbeddedChatMessageName as MessageName,
103
+ EmbeddedChatMessageContentWrapper as MessageContentWrapper,
104
+ EmbeddedChatMessageContent as MessageContent,
105
+ EmbeddedChatMessageAttachments as MessageAttachments,
106
+ EmbeddedChatMessageAttachmentsList as MessageAttachmentsList,
107
+ EmbeddedChatMessageAttachmentsItem as MessageAttachmentsItem,
108
+ EmbeddedChatMessageAttachmentsItemIcon as MessageAttachmentsItemIcon,
109
+ EmbeddedChatMessageAttachmentsItemTitle as MessageAttachmentsItemTitle,
110
+ EmbeddedChatMessageAttachmentsPreview as MessageAttachmentsPreview,
111
+ EmbeddedChatMessageAttachmentsPreviewOverlay as MessageAttachmentsPreviewOverlay,
112
+ EmbeddedChatMessageAttachmentsPreviewContent as MessageAttachmentsPreviewContent,
113
+ EmbeddedChatMessageAttachmentsPreviewHeader as MessageAttachmentsPreviewHeader,
114
+ EmbeddedChatMessageAttachmentsPreviewClose as MessageAttachmentsPreviewClose,
115
+ EmbeddedChatMessageAttachmentsPreviewBody as MessageAttachmentsPreviewBody,
116
+ EmbeddedChatMessage as Message,
117
+ EmbeddedChatMessageActions as MessageActions,
118
+ EmbeddedChatMessageToolActions as MessageToolActions,
119
+ EmbeddedChatMessageToolAction as MessageToolAction,
120
+ EmbeddedChatMessageAction as MessageAction,
121
+ EmbeddedChatMessageSources as MessageSources,
122
+ EmbeddedChatMessageSourcesHeader as MessageSourcesHeader,
123
+ EmbeddedChatMessageSourcesList as MessageSourcesList,
124
+ EmbeddedChatMessageSourceItem as MessageSourceItem,
125
+ EmbeddedChatMessageSourceItemBreadcrumbs as MessageSourceItemBreadcrumbs,
126
+ EmbeddedChatMessageSourceItemBreadcrumbIcon as MessageSourceItemBreadcrumbIcon,
127
+ EmbeddedChatMessageSourceItemIcon as MessageSourceItemIcon,
128
+ EmbeddedChatMessageSourceItemTitle as MessageSourceItemTitle,
129
+ EmbeddedChatMessageSourceItemTag as MessageSourceItemTag,
130
+ EmbeddedChatMessageSourceItemDescription as MessageSourceItemDescription,
131
+ EmbeddedChatMessageSourceItemDescriptionPart as MessageSourceItemDescriptionPart,
132
+ EmbeddedChatMessageSourceItemIndicator as MessageSourceItemIndicator,
133
+ EmbeddedChatFooter as Footer,
134
+ EmbeddedChatInputFieldset as InputFieldset,
135
+ EmbeddedChatInputGroup as InputGroup,
136
+ EmbeddedChatInput as Input,
137
+ EmbeddedChatSendButton as SendButton,
138
+ EmbeddedChatSendButtonIcon as SendButtonIcon,
139
+ EmbeddedChatAttachmentsBar as AttachmentsBar,
140
+ EmbeddedChatAttachmentsBarList as AttachmentsBarList,
141
+ EmbeddedChatAttachmentsBarAttachment as AttachmentsBarAttachment,
142
+ EmbeddedChatAttachmentsBarAttachmentIcon as AttachmentsBarAttachmentIcon,
143
+ EmbeddedChatAttachmentsBarAttachmentTitle as AttachmentsBarAttachmentTitle,
144
+ EmbeddedChatAttachmentsBarAttachmentDelete as AttachmentsBarAttachmentDelete,
145
+ EmbeddedChatAttachmentsBarActions as AttachmentsBarActions,
146
+ EmbeddedChatAttachmentsBarInfoTip as AttachmentsBarInfoTip,
147
+ EmbeddedChatAttachmentsBarInfoTipIcon as AttachmentsBarInfoTipIcon,
148
+ EmbeddedChatAttachmentsBarInfoTipText as AttachmentsBarInfoTipText,
149
+ EmbeddedChatAttachmentsBarInfoTipArrow as AttachmentsBarInfoTipArrow,
150
+ EmbeddedChatAttachmentsBarInputs as AttachmentsBarInputs,
151
+ EmbeddedChatAttachmentsBarInput as AttachmentsBarInput,
152
+ EmbeddedChatAttachmentsBarInputIcon as AttachmentsBarInputIcon,
153
+ EmbeddedChatAttachmentsBarModal as AttachmentsBarModal,
154
+ EmbeddedChatAttachmentsBarModalOverlay as AttachmentsBarModalOverlay,
155
+ EmbeddedChatAttachmentsBarModalContent as AttachmentsBarModalContent,
156
+ EmbeddedChatAttachmentsBarModalHeader as AttachmentsBarModalHeader,
157
+ EmbeddedChatAttachmentsBarModalHeading as AttachmentsBarModalHeading,
158
+ EmbeddedChatAttachmentsBarModalDescription as AttachmentsBarModalDescription,
159
+ EmbeddedChatAttachmentsBarModalHelp as AttachmentsBarModalHelp,
160
+ EmbeddedChatAttachmentsBarModalClose as AttachmentsBarModalClose,
161
+ EmbeddedChatAttachmentsBarModalBody as AttachmentsBarModalBody,
162
+ EmbeddedChatAttachmentsBarForm as AttachmentsBarForm,
163
+ EmbeddedChatAttachmentsBarFormTitle as AttachmentsBarFormTitle,
164
+ EmbeddedChatAttachmentsBarFormTitleLabel as AttachmentsBarFormTitleLabel,
165
+ EmbeddedChatAttachmentsBarFormTitleInput as AttachmentsBarFormTitleInput,
166
+ EmbeddedChatAttachmentsBarFormTitleError as AttachmentsBarFormTitleError,
167
+ EmbeddedChatAttachmentsBarFormContent as AttachmentsBarFormContent,
168
+ EmbeddedChatAttachmentsBarFormContentLabel as AttachmentsBarFormContentLabel,
169
+ EmbeddedChatAttachmentsBarFormContentInput as AttachmentsBarFormContentInput,
170
+ EmbeddedChatAttachmentsBarFormContentError as AttachmentsBarFormContentError,
171
+ EmbeddedChatAttachmentsBarFormSubmitButton as AttachmentsBarFormSubmitButton,
172
+ EmbeddedChatActionBar as ActionBar,
173
+ EmbeddedChatActions as Actions,
174
+ EmbeddedChatTaglineContainer as TaglineContainer,
175
+ EmbeddedChatTaglineText as TaglineText,
176
+ EmbeddedChatTaglineLogo as TaglineLogo,
177
+ EmbeddedChatTaglineBrandName as TaglineBrandName,
178
+ EmbeddedChatAction as ChatAction,
179
+ EmbeddedChatActionLabel as ChatActionLabel,
180
+ EmbeddedChatActionFeedback as ChatActionFeedback,
181
+ EmbeddedChatHelpActions as HelpActions,
182
+ EmbeddedChatHelpAction as HelpAction,
183
+ EmbeddedChatHelpActionsTrigger as HelpActionsTrigger,
184
+ EmbeddedChatHelpActionsMenu as HelpActionsMenu,
185
+ EmbeddedChatHelpActionsMenuArrow as HelpActionsMenuArrow,
186
+ EmbeddedChatHelpActionsMenuItem as HelpActionsMenuItem,
187
+ EmbeddedChatHelpActionsMenuItemIcon as HelpActionsMenuItemIcon,
188
+ EmbeddedChatFeedbackModal as FeedbackModal,
189
+ EmbeddedChatFeedbackModalOverlay as FeedbackModalOverlay,
190
+ EmbeddedChatFeedbackModalContent as FeedbackModalContent,
191
+ EmbeddedChatFeedbackModalHeader as FeedbackModalHeader,
192
+ EmbeddedChatFeedbackModalClose as FeedbackModalClose,
193
+ EmbeddedChatFeedbackModalBody as FeedbackModalBody,
194
+ EmbeddedChatFeedbackForm as FeedbackForm,
195
+ EmbeddedChatFeedbackItem as FeedbackItem,
196
+ EmbeddedChatFeedbackItemCheckbox as FeedbackItemCheckbox,
197
+ EmbeddedChatFeedbackItemCheckboxIndicator as FeedbackItemCheckboxIndicator,
198
+ EmbeddedChatFeedbackItemLabel as FeedbackItemLabel,
199
+ EmbeddedChatFeedbackItemDescription as FeedbackItemDescription,
200
+ EmbeddedChatFeedbackSubmitButton as FeedbackSubmitButton,
201
+ EmbeddedChatFormWrapper as FormWrapper,
202
+ EmbeddedChatForm as Form,
203
+ EmbeddedChatFormClose as FormClose,
204
+ EmbeddedChatFormHeader as FormHeader,
205
+ EmbeddedChatFormHeading as FormHeading,
206
+ EmbeddedChatFormDescription as FormDescription,
207
+ EmbeddedChatFormContent as FormContent,
208
+ EmbeddedChatFormField as FormField,
209
+ EmbeddedChatFormFieldLabel as FormFieldLabel,
210
+ EmbeddedChatFormFieldText as FormFieldText,
211
+ EmbeddedChatFormFieldEmail as FormFieldEmail,
212
+ EmbeddedChatFormFieldFile as FormFieldFile,
213
+ EmbeddedChatFormFieldTextArea as FormFieldTextArea,
214
+ EmbeddedChatFormFieldCheckbox as FormFieldCheckbox,
215
+ EmbeddedChatFormFieldCheckboxIndicator as FormFieldCheckboxIndicator,
216
+ EmbeddedChatFormFieldSelect as FormFieldSelect,
217
+ EmbeddedChatFormFieldSelectTrigger as FormFieldSelectTrigger,
218
+ EmbeddedChatFormFieldSelectValue as FormFieldSelectValue,
219
+ EmbeddedChatFormFieldSelectIcon as FormFieldSelectIcon,
220
+ EmbeddedChatFormFieldSelectContent as FormFieldSelectContent,
221
+ EmbeddedChatFormFieldSelectViewport as FormFieldSelectViewport,
222
+ EmbeddedChatFormFieldSelectItem as FormFieldSelectItem,
223
+ EmbeddedChatFormFieldSelectItemText as FormFieldSelectItemText,
224
+ EmbeddedChatFormFieldSelectItemIndicator as FormFieldSelectItemIndicator,
225
+ EmbeddedChatFormFieldError as FormFieldError,
226
+ EmbeddedChatFormError as FormError,
227
+ EmbeddedChatFormFooter as FormFooter,
228
+ EmbeddedChatFormCancel as FormCancel,
229
+ EmbeddedChatFormSubmit as FormSubmit,
230
+ EmbeddedChatFormSuccess as FormSuccess,
231
+ EmbeddedChatFormSuccessHeading as FormSuccessHeading,
232
+ EmbeddedChatFormSuccessMessage as FormSuccessMessage,
233
+ EmbeddedChatFormSuccessButton as FormSuccessButton
234
+ }
235
+ }
236
+
237
+ declare const EmbeddedChatAction: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ChatAction>) => JSX.Element;
238
+
239
+ declare const EmbeddedChatActionBar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ActionBar>) => JSX.Element;
240
+
241
+ declare const EmbeddedChatActionFeedback: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ChatActionFeedback>) => JSX.Element;
242
+
243
+ declare const EmbeddedChatActionLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ChatActionLabel>) => JSX.Element;
244
+
245
+ declare const EmbeddedChatActions: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Actions>) => JSX.Element;
246
+
247
+ declare const EmbeddedChatAttachmentsBar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBar>) => JSX.Element;
248
+
249
+ declare const EmbeddedChatAttachmentsBarActions: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarActions>) => JSX.Element;
250
+
251
+ declare const EmbeddedChatAttachmentsBarAttachment: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarAttachment>) => JSX.Element;
252
+
253
+ declare const EmbeddedChatAttachmentsBarAttachmentDelete: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarAttachmentDelete>) => JSX.Element;
254
+
255
+ declare const EmbeddedChatAttachmentsBarAttachmentIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarAttachmentIcon>) => JSX.Element;
256
+
257
+ declare const EmbeddedChatAttachmentsBarAttachmentTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarAttachmentTitle>) => JSX.Element;
258
+
259
+ declare const EmbeddedChatAttachmentsBarForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarForm>) => JSX.Element;
260
+
261
+ declare const EmbeddedChatAttachmentsBarFormContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormContent>) => JSX.Element;
262
+
263
+ declare const EmbeddedChatAttachmentsBarFormContentError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormContentError>) => JSX.Element;
264
+
265
+ declare const EmbeddedChatAttachmentsBarFormContentInput: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormContentInput>) => JSX.Element;
266
+
267
+ declare const EmbeddedChatAttachmentsBarFormContentLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormContentLabel>) => JSX.Element;
268
+
269
+ declare const EmbeddedChatAttachmentsBarFormSubmitButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormSubmitButton>) => JSX.Element;
270
+
271
+ declare const EmbeddedChatAttachmentsBarFormTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormTitle>) => JSX.Element;
272
+
273
+ declare const EmbeddedChatAttachmentsBarFormTitleError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormTitleError>) => JSX.Element;
274
+
275
+ declare const EmbeddedChatAttachmentsBarFormTitleInput: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormTitleInput>) => JSX.Element;
276
+
277
+ declare const EmbeddedChatAttachmentsBarFormTitleLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarFormTitleLabel>) => JSX.Element;
278
+
279
+ declare const EmbeddedChatAttachmentsBarInfoTip: ForwardRefExoticComponent< PolymorphicProps & Omit< TooltipProps, "_id" | "delayDuration"> & Partial<Pick< TooltipProps, "_id" | "delayDuration">>>;
280
+
281
+ declare const EmbeddedChatAttachmentsBarInfoTipArrow: ForwardRefExoticComponent< PolymorphicProps & Omit< TooltipArrowProps & RefAttributes<SVGSVGElement>, "_id"> & Partial<Pick< TooltipArrowProps & RefAttributes<SVGSVGElement>, "_id">>>;
282
+
283
+ declare const EmbeddedChatAttachmentsBarInfoTipIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarInfoTipIcon>) => JSX.Element;
284
+
285
+ declare const EmbeddedChatAttachmentsBarInfoTipText: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarInfoTipText>) => JSX.Element;
286
+
287
+ declare const EmbeddedChatAttachmentsBarInput: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarInput>) => JSX.Element;
288
+
289
+ declare const EmbeddedChatAttachmentsBarInputIcon: ForwardRefExoticComponent< PolymorphicProps & Omit< IconBaseProps, "_id"> & Partial<Pick< IconBaseProps, "_id">>>;
290
+
291
+ declare const EmbeddedChatAttachmentsBarInputs: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarInputs>) => JSX.Element;
292
+
293
+ declare const EmbeddedChatAttachmentsBarList: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarList>) => JSX.Element;
294
+
295
+ declare const EmbeddedChatAttachmentsBarModal: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< DialogProps, "_id"> & Partial<Pick< DialogProps, "_id">>>>) => JSX.Element;
296
+
297
+ declare const EmbeddedChatAttachmentsBarModalBody: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalBody>) => JSX.Element;
298
+
299
+ declare const EmbeddedChatAttachmentsBarModalClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalClose>) => JSX.Element;
300
+
301
+ declare const EmbeddedChatAttachmentsBarModalContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalContent>) => JSX.Element;
302
+
303
+ declare const EmbeddedChatAttachmentsBarModalDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalDescription>) => JSX.Element;
304
+
305
+ declare const EmbeddedChatAttachmentsBarModalHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalHeader>) => JSX.Element;
306
+
307
+ declare const EmbeddedChatAttachmentsBarModalHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalHeading>) => JSX.Element;
308
+
309
+ declare const EmbeddedChatAttachmentsBarModalHelp: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>>) => JSX.Element | null;
310
+
311
+ declare const EmbeddedChatAttachmentsBarModalOverlay: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.AttachmentsBarModalOverlay>) => JSX.Element;
312
+
313
+ declare const EmbeddedChatContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Content>) => JSX.Element;
314
+
315
+ declare const EmbeddedChatContentScrollArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ContentScrollArea>) => JSX.Element;
316
+
317
+ declare const EmbeddedChatContentScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
318
+
319
+ declare const EmbeddedChatContentScrollAreaScrollbar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ContentScrollAreaScrollbar>) => JSX.Element;
320
+
321
+ declare const EmbeddedChatContentScrollAreaThumb: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ContentScrollAreaThumb>) => JSX.Element;
322
+
323
+ declare const EmbeddedChatContentScrollAreaViewport: ForwardRefExoticComponent<Omit<Omit< PolymorphicProps & Omit< ScrollAreaViewportProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaViewportProps & RefAttributes<HTMLDivElement>, "_id">>, "ref"> & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
324
+
325
+ declare const EmbeddedChatConversationLoading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ConversationLoading>) => JSX.Element;
326
+
327
+ declare const EmbeddedChatDisclaimer: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Disclaimer>) => JSX.Element;
328
+
329
+ declare const EmbeddedChatDisclaimerArrow: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.DisclaimerArrow>) => JSX.Element;
330
+
331
+ declare const EmbeddedChatDisclaimerContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.DisclaimerContent>) => JSX.Element;
332
+
333
+ declare const EmbeddedChatDisclaimerLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.DisclaimerLabel>) => JSX.Element;
334
+
335
+ declare const EmbeddedChatDisclaimerText: MemoExoticComponent<(props: Omit< ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>>, "componentStyles">) => JSX.Element>;
336
+
337
+ declare const EmbeddedChatDisclaimerTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.DisclaimerTrigger>) => JSX.Element;
338
+
339
+ declare const EmbeddedChatFeedbackForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackForm>) => JSX.Element;
340
+
341
+ declare const EmbeddedChatFeedbackItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackItem>) => JSX.Element;
342
+
343
+ declare const EmbeddedChatFeedbackItemCheckbox: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackItemCheckbox>) => JSX.Element;
344
+
345
+ declare const EmbeddedChatFeedbackItemCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackItemCheckboxIndicator>) => JSX.Element;
346
+
347
+ declare const EmbeddedChatFeedbackItemDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackItemDescription>) => JSX.Element;
348
+
349
+ declare const EmbeddedChatFeedbackItemLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackItemLabel>) => JSX.Element;
350
+
351
+ declare const EmbeddedChatFeedbackModal: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< DialogProps, "_id"> & Partial<Pick< DialogProps, "_id">>>>) => JSX.Element;
352
+
353
+ declare const EmbeddedChatFeedbackModalBody: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackModalBody>) => JSX.Element;
354
+
355
+ declare const EmbeddedChatFeedbackModalClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackModalClose>) => JSX.Element;
356
+
357
+ declare const EmbeddedChatFeedbackModalContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackModalContent>) => JSX.Element;
358
+
359
+ declare const EmbeddedChatFeedbackModalHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackModalHeader>) => JSX.Element;
360
+
361
+ declare const EmbeddedChatFeedbackModalOverlay: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackModalOverlay>) => JSX.Element;
362
+
363
+ declare const EmbeddedChatFeedbackSubmitButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FeedbackSubmitButton>) => JSX.Element;
364
+
365
+ declare const EmbeddedChatFooter: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Footer>) => JSX.Element;
366
+
367
+ declare const EmbeddedChatForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Form>) => JSX.Element;
368
+
369
+ declare const EmbeddedChatFormCancel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormCancel>) => JSX.Element;
370
+
371
+ declare const EmbeddedChatFormClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormClose>) => JSX.Element;
372
+
373
+ declare const EmbeddedChatFormContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormContent>) => JSX.Element;
374
+
375
+ declare const EmbeddedChatFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormDescription>) => JSX.Element;
376
+
377
+ declare const EmbeddedChatFormError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormError>) => JSX.Element;
378
+
379
+ declare const EmbeddedChatFormField: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormField>) => JSX.Element;
380
+
381
+ declare const EmbeddedChatFormFieldCheckbox: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCheckbox>) => JSX.Element;
382
+
383
+ declare const EmbeddedChatFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
384
+
385
+ declare const EmbeddedChatFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldEmail>) => JSX.Element;
386
+
387
+ declare const EmbeddedChatFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldError>) => JSX.Element;
388
+
389
+ declare const EmbeddedChatFormFieldFile: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldFile>) => JSX.Element;
390
+
391
+ declare const EmbeddedChatFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldLabel>) => JSX.Element;
392
+
393
+ declare const EmbeddedChatFormFieldSelect: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => JSX.Element;
394
+
395
+ declare const EmbeddedChatFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectContent>) => JSX.Element;
396
+
397
+ declare const EmbeddedChatFormFieldSelectIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectIcon>) => JSX.Element;
398
+
399
+ declare const EmbeddedChatFormFieldSelectItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectItem>) => JSX.Element;
400
+
401
+ declare const EmbeddedChatFormFieldSelectItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectItemIndicator>) => JSX.Element;
402
+
403
+ declare const EmbeddedChatFormFieldSelectItemText: ForwardRefExoticComponent< PolymorphicProps & Omit< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id">>>;
404
+
405
+ declare const EmbeddedChatFormFieldSelectTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectTrigger>) => JSX.Element;
406
+
407
+ declare const EmbeddedChatFormFieldSelectValue: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id">>>>) => JSX.Element;
408
+
409
+ declare const EmbeddedChatFormFieldSelectViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectViewport>) => JSX.Element;
410
+
411
+ declare const EmbeddedChatFormFieldText: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldText>) => JSX.Element;
412
+
413
+ declare const EmbeddedChatFormFieldTextArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldTextArea>) => JSX.Element;
414
+
415
+ declare const EmbeddedChatFormFooter: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFooter>) => JSX.Element;
416
+
417
+ declare const EmbeddedChatFormHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormHeader>) => JSX.Element;
418
+
419
+ declare const EmbeddedChatFormHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormHeading>) => JSX.Element;
420
+
421
+ declare const EmbeddedChatFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormSubmit>) => JSX.Element;
422
+
423
+ declare const EmbeddedChatFormSuccess: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormSuccess>) => JSX.Element;
424
+
425
+ declare const EmbeddedChatFormSuccessButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormSuccessButton>) => JSX.Element;
426
+
427
+ declare const EmbeddedChatFormSuccessHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormSuccessHeading>) => JSX.Element;
428
+
429
+ declare const EmbeddedChatFormSuccessMessage: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>>) => JSX.Element;
430
+
431
+ declare const EmbeddedChatFormWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormWrapper>) => JSX.Element;
432
+
433
+ declare const EmbeddedChatHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Header>) => JSX.Element;
434
+
435
+ declare const EmbeddedChatHeaderToolbar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HeaderToolbar>) => JSX.Element;
436
+
437
+ declare const EmbeddedChatHeaderToolbarWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HeaderToolbarWrapper>) => JSX.Element;
438
+
439
+ declare const EmbeddedChatHelpAction: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ChatHelpAction>) => JSX.Element;
440
+
441
+ declare const EmbeddedChatHelpActions: (props: EmbeddedChatPrimitive.EmbeddedChatPrimitiveHelpActionsProps) => JSX.Element | null;
442
+
443
+ declare const EmbeddedChatHelpActionsMenu: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HelpActionsMenu>) => JSX.Element;
444
+
445
+ declare const EmbeddedChatHelpActionsMenuArrow: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HelpActionsMenuArrow>) => JSX.Element;
446
+
447
+ declare const EmbeddedChatHelpActionsMenuItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HelpActionsMenuItem>) => JSX.Element;
448
+
449
+ declare const EmbeddedChatHelpActionsMenuItemIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HelpActionsMenuItemIcon>) => JSX.Element;
450
+
451
+ declare const EmbeddedChatHelpActionsTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HelpActionsTrigger>) => JSX.Element;
452
+
453
+ declare const EmbeddedChatInput: ForwardRefExoticComponent<Omit<Omit< TextareaAutosizeProps & ClassAttributes<HTMLTextAreaElement> & TextareaHTMLAttributes<HTMLTextAreaElement>, "ref"> & RefAttributes<HTMLTextAreaElement>, "ref"> & RefAttributes<HTMLTextAreaElement>>;
454
+
455
+ declare const EmbeddedChatInputFieldset: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.InputFieldset>) => JSX.Element;
456
+
457
+ declare const EmbeddedChatInputGroup: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.InputGroup>) => JSX.Element;
458
+
459
+ declare const EmbeddedChatIntroMessageWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.IntroMessageWrapper>) => JSX.Element;
460
+
461
+ declare const EmbeddedChatMessage: ({ className, componentStyles, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Message>) => JSX.Element;
462
+
463
+ declare const EmbeddedChatMessageAction: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAction>) => JSX.Element;
464
+
465
+ declare const EmbeddedChatMessageActions: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageActions>) => JSX.Element;
466
+
467
+ declare const EmbeddedChatMessageAttachments: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>>) => JSX.Element | null;
468
+
469
+ declare const EmbeddedChatMessageAttachmentsItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsItem>) => JSX.Element;
470
+
471
+ declare const EmbeddedChatMessageAttachmentsItemIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsItemIcon>) => JSX.Element;
472
+
473
+ declare const EmbeddedChatMessageAttachmentsItemTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsItemTitle>) => JSX.Element;
474
+
475
+ declare const EmbeddedChatMessageAttachmentsList: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsList>) => JSX.Element;
476
+
477
+ declare const EmbeddedChatMessageAttachmentsPreview: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< DialogProps, "_id"> & Partial<Pick< DialogProps, "_id">>>>) => JSX.Element;
478
+
479
+ declare const EmbeddedChatMessageAttachmentsPreviewBody: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsPreviewBody>) => JSX.Element;
480
+
481
+ declare const EmbeddedChatMessageAttachmentsPreviewClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsPreviewClose>) => JSX.Element;
482
+
483
+ declare const EmbeddedChatMessageAttachmentsPreviewContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsPreviewContent>) => JSX.Element;
484
+
485
+ declare const EmbeddedChatMessageAttachmentsPreviewHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsPreviewHeader>) => JSX.Element;
486
+
487
+ declare const EmbeddedChatMessageAttachmentsPreviewOverlay: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAttachmentsPreviewOverlay>) => JSX.Element;
488
+
489
+ declare const EmbeddedChatMessageAvatar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatar>) => JSX.Element;
490
+
491
+ declare const EmbeddedChatMessageAvatarContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatarContent>) => JSX.Element;
492
+
493
+ declare const EmbeddedChatMessageAvatarFallback: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatarFallback>) => JSX.Element;
494
+
495
+ declare const EmbeddedChatMessageAvatarImage: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatarImage>) => JSX.Element;
496
+
497
+ declare const EmbeddedChatMessageContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageContent>) => JSX.Element;
498
+
499
+ declare const EmbeddedChatMessageContentWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageContentWrapper>) => JSX.Element;
500
+
501
+ declare const EmbeddedChatMessageHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageHeader>) => JSX.Element;
502
+
503
+ declare const EmbeddedChatMessageLoading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageLoading>) => JSX.Element;
504
+
505
+ declare const EmbeddedChatMessageName: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageName>) => JSX.Element;
506
+
507
+ declare const EmbeddedChatMessages: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Messages>) => JSX.Element;
508
+
509
+ declare const EmbeddedChatMessageSourceItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItem>) => JSX.Element;
510
+
511
+ declare const EmbeddedChatMessageSourceItemBreadcrumbIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemBreadcrumbIcon>) => JSX.Element;
512
+
513
+ declare const EmbeddedChatMessageSourceItemBreadcrumbs: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemBreadcrumbs>) => JSX.Element;
514
+
515
+ declare const EmbeddedChatMessageSourceItemDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemDescription>) => JSX.Element;
516
+
517
+ declare const EmbeddedChatMessageSourceItemDescriptionPart: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemDescriptionPart>) => JSX.Element;
518
+
519
+ declare const EmbeddedChatMessageSourceItemIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemIcon>) => JSX.Element;
520
+
521
+ declare const EmbeddedChatMessageSourceItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemIndicator>) => JSX.Element;
522
+
523
+ declare const EmbeddedChatMessageSourceItemTag: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemTag>) => JSX.Element;
524
+
525
+ declare const EmbeddedChatMessageSourceItemTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourceItemTitle>) => JSX.Element;
526
+
527
+ declare const EmbeddedChatMessageSources: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>>) => JSX.Element | null;
528
+
529
+ declare const EmbeddedChatMessageSourcesHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourcesHeader>) => JSX.Element;
530
+
531
+ declare const EmbeddedChatMessageSourcesList: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageSourcesList>) => JSX.Element;
532
+
533
+ declare const EmbeddedChatMessageToolAction: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageToolAction>) => JSX.Element;
534
+
535
+ declare const EmbeddedChatMessageToolActions: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageToolActions>) => JSX.Element;
536
+
537
+ declare const EmbeddedChatMessageWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageWrapper>) => JSX.Element;
538
+
539
+ declare const EmbeddedChatProvider: FC<ChatProviderProps>;
540
+
541
+ declare const EmbeddedChatQuickQuestion: ForwardRefExoticComponent<Omit<Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
542
+
543
+ declare const EmbeddedChatQuickQuestionButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.QuickQuestionButton>) => JSX.Element;
544
+
545
+ declare const EmbeddedChatQuickQuestions: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.QuickQuestions>) => JSX.Element;
546
+
547
+ declare const EmbeddedChatQuickQuestionsLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.QuickQuestionsLabel>) => JSX.Element;
548
+
549
+ declare const EmbeddedChatQuickQuestionsList: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.QuickQuestionsList>) => JSX.Element;
550
+
551
+ declare const EmbeddedChatRoot: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Root>) => JSX.Element;
552
+
553
+ declare const EmbeddedChatSendButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.SendButton>) => JSX.Element;
554
+
555
+ declare const EmbeddedChatSendButtonIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.SendButtonIcon>) => JSX.Element;
556
+
557
+ declare const EmbeddedChatTaglineBrandName: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.TaglineBrandName>) => JSX.Element;
558
+
559
+ declare const EmbeddedChatTaglineContainer: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.TaglineContainer>) => JSX.Element;
560
+
561
+ declare const EmbeddedChatTaglineLogo: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.TaglineLogo>) => JSX.Element;
562
+
563
+ declare const EmbeddedChatTaglineText: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.TaglineText>) => JSX.Element;
564
+
565
+ declare const EmbeddedChatToolbarHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ToolbarHeader>) => JSX.Element;
566
+
567
+ declare const EmbeddedChatWorkflow: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Workflow>) => JSX.Element;
568
+
569
+ declare const EmbeddedChatWorkflowIcon: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< IconBaseProps, "_id"> & Partial<Pick< IconBaseProps, "_id">>>>) => JSX.Element;
570
+
571
+ declare const EmbeddedChatWorkflows: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Workflows>) => JSX.Element;
572
+
573
+ declare const EmbeddedChatWorkflowsLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.WorkflowsLabel>) => JSX.Element;
574
+
575
+ declare const EmbeddedChatWorkflowsList: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.WorkflowsList>) => JSX.Element;
576
+
577
+ declare const EmbeddedChatWrapper: ForwardRefExoticComponent<Omit<EmbeddedChatWrapperProps, "ref"> & RefAttributes<HTMLDivElement>>;
578
+
579
+ declare type EmbeddedChatWrapperProps = React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Wrapper> & AiChatPageWrapperVariants;
580
+
581
+ export declare namespace EmbeddedSearch {
582
+ export {
583
+ EmbeddedSearchProvider as Provider,
584
+ EmbeddedSearchWrapper as Wrapper,
585
+ EmbeddedSearchRoot as Root,
586
+ EmbeddedSearchContent as Content,
587
+ EmbeddedSearchInputGroup as InputGroup,
588
+ EmbeddedSearchInputIcon as InputIcon,
589
+ EmbeddedSearchInput as Input,
590
+ EmbeddedSearchLoading as Loading,
591
+ EmbeddedSearchResults as Results,
592
+ EmbeddedSearchResultsLoading as ResultsLoading,
593
+ EmbeddedSearchAskAITrigger as AskAITrigger,
594
+ EmbeddedSearchAskAITriggerIcon as AskAITriggerIcon,
595
+ EmbeddedSearchAskAITriggerLabel as AskAITriggerLabel,
596
+ EmbeddedSearchAskAITriggerIndicator as AskAITriggerIndicator,
597
+ EmbeddedSearchResultsEmpty as ResultsEmpty,
598
+ EmbeddedSearchResultsTabList as ResultsTabList,
599
+ EmbeddedSearchResultsTab as ResultsTab,
600
+ EmbeddedSearchResultsScrollArea as ResultsScrollArea,
601
+ EmbeddedSearchResultsScrollAreaViewport as ResultsScrollAreaViewport,
602
+ EmbeddedSearchResultsScrollAreaScrollbar as ResultsScrollAreaScrollbar,
603
+ EmbeddedSearchResultsScrollAreaThumb as ResultsScrollAreaThumb,
604
+ EmbeddedSearchResultsScrollAreaCorner as ResultsScrollAreaCorner,
605
+ EmbeddedSearchResultsList as ResultsList,
606
+ EmbeddedSearchResultsItem as ResultsItem,
607
+ EmbeddedSearchResultsItemBreadcrumbs as ResultsItemBreadcrumbs,
608
+ EmbeddedSearchResultsItemBreadcrumbIcon as ResultsItemBreadcrumbIcon,
609
+ EmbeddedSearchResultsItemIcon as ResultsItemIcon,
610
+ EmbeddedSearchResultsItemTitle as ResultsItemTitle,
611
+ EmbeddedSearchResultsItemTag as ResultsItemTag,
612
+ EmbeddedSearchResultsItemDescription as ResultsItemDescription,
613
+ EmbeddedSearchResultsItemDescriptionPart as ResultsItemDescriptionPart,
614
+ EmbeddedSearchResultsItemIndicator as ResultsItemIndicator,
615
+ EmbeddedSearchFooter as Footer,
616
+ EmbeddedSearchTaglineContainer as TaglineContainer,
617
+ EmbeddedSearchTaglineText as TaglineText,
618
+ EmbeddedSearchTaglineLogo as TaglineLogo,
619
+ EmbeddedSearchTaglineBrandName as TaglineBrandName
620
+ }
621
+ }
622
+
623
+ declare const EmbeddedSearchAskAITrigger: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITrigger>) => JSX.Element;
624
+
625
+ declare const EmbeddedSearchAskAITriggerIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerIcon>) => JSX.Element;
626
+
627
+ declare const EmbeddedSearchAskAITriggerIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerIndicator>) => JSX.Element;
628
+
629
+ declare const EmbeddedSearchAskAITriggerLabel: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.AskAITriggerLabel>) => JSX.Element;
630
+
631
+ declare const EmbeddedSearchContent: ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<{
632
+ children?: React.ReactNode;
633
+ } & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
634
+ asChild?: boolean;
635
+ }, "ref"> & {
636
+ label?: string;
637
+ } & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<{
638
+ children?: React.ReactNode;
639
+ } & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
640
+ asChild?: boolean;
641
+ }, "ref"> & {
642
+ label?: string;
643
+ } & RefAttributes<HTMLDivElement>, "_id">>, "ref"> & RefAttributes<HTMLDivElement>>;
644
+
645
+ declare const EmbeddedSearchFooter: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Footer>) => JSX.Element;
646
+
647
+ declare const EmbeddedSearchInput: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Input>) => JSX.Element;
648
+
649
+ declare const EmbeddedSearchInputGroup: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.InputGroup>) => JSX.Element;
650
+
651
+ declare const EmbeddedSearchInputIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.InputIcon>) => JSX.Element;
652
+
653
+ declare const EmbeddedSearchLoading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Loading>) => JSX.Element;
654
+
655
+ declare const EmbeddedSearchProvider: (props: React.ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Provider>) => JSX.Element;
656
+
657
+ declare const EmbeddedSearchResults: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Results>) => JSX.Element;
658
+
659
+ declare const EmbeddedSearchResultsEmpty: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsEmpty>) => JSX.Element;
660
+
661
+ declare const EmbeddedSearchResultsItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItem>) => JSX.Element;
662
+
663
+ declare const EmbeddedSearchResultsItemBreadcrumbIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemBreadcrumbIcon>) => JSX.Element;
664
+
665
+ declare const EmbeddedSearchResultsItemBreadcrumbs: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemBreadcrumbs>) => JSX.Element;
666
+
667
+ declare const EmbeddedSearchResultsItemDescription: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemDescription>) => JSX.Element;
668
+
669
+ declare const EmbeddedSearchResultsItemDescriptionPart: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemDescriptionPart>) => JSX.Element;
670
+
671
+ declare const EmbeddedSearchResultsItemIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIcon>) => JSX.Element;
672
+
673
+ declare const EmbeddedSearchResultsItemIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIndicator>) => JSX.Element;
674
+
675
+ declare const EmbeddedSearchResultsItemTag: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTag>) => JSX.Element;
676
+
677
+ declare const EmbeddedSearchResultsItemTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTitle>) => JSX.Element;
678
+
679
+ declare const EmbeddedSearchResultsList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsList>) => JSX.Element;
680
+
681
+ declare const EmbeddedSearchResultsLoading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsLoading>) => JSX.Element;
682
+
683
+ declare const EmbeddedSearchResultsScrollArea: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollArea>) => JSX.Element;
684
+
685
+ declare const EmbeddedSearchResultsScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
686
+
687
+ declare const EmbeddedSearchResultsScrollAreaScrollbar: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaScrollbar>) => JSX.Element;
688
+
689
+ declare const EmbeddedSearchResultsScrollAreaThumb: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaThumb>) => JSX.Element;
690
+
691
+ declare const EmbeddedSearchResultsScrollAreaViewport: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsScrollAreaViewport>) => JSX.Element;
692
+
693
+ declare const EmbeddedSearchResultsTab: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsTab>) => JSX.Element;
694
+
695
+ declare const EmbeddedSearchResultsTabList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsTabList>) => JSX.Element;
696
+
697
+ declare const EmbeddedSearchRoot: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Root>) => JSX.Element;
698
+
699
+ declare const EmbeddedSearchTaglineBrandName: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineBrandName>) => JSX.Element;
700
+
701
+ declare const EmbeddedSearchTaglineContainer: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineContainer>) => JSX.Element;
702
+
703
+ declare const EmbeddedSearchTaglineLogo: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineLogo>) => JSX.Element;
704
+
705
+ declare const EmbeddedSearchTaglineText: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.TaglineText>) => JSX.Element;
706
+
707
+ declare const EmbeddedSearchWrapper: ({ className, ...props }: EmbeddedSearchWrapperProps) => JSX.Element;
708
+
709
+ declare type EmbeddedSearchWrapperProps = ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Wrapper>;
710
+
711
+ export declare namespace IntelligentForm {
712
+ export {
713
+ IntelligentFormProvider as Provider,
714
+ IntelligentFormRoot as Root,
715
+ IntelligentFormHeading as Heading,
716
+ IntelligentFormContent as Content,
717
+ IntelligentFormContentScrollArea as ContentScrollArea,
718
+ IntelligentFormContentScrollAreaViewport as ContentScrollAreaViewport,
719
+ IntelligentFormContentScrollAreaScrollbar as ContentScrollAreaScrollbar,
720
+ IntelligentFormContentScrollAreaThumb as ContentScrollAreaThumb,
721
+ IntelligentFormContentScrollAreaCorner as ContentScrollAreaCorner,
722
+ IntelligentFormSuccess as Success,
723
+ IntelligentFormSuccessIcon as SuccessIcon,
724
+ IntelligentFormSuccessHeading as SuccessHeading,
725
+ IntelligentFormSuccessMessage as SuccessMessage,
726
+ IntelligentFormPrimaryForm as PrimaryForm,
727
+ IntelligentFormPrimaryFormDescription as PrimaryFormDescription,
728
+ IntelligentFormPrimaryFormFields as PrimaryFormFields,
729
+ IntelligentFormPrimaryFormSubmit as PrimaryFormSubmit,
730
+ IntelligentFormField as Field,
731
+ IntelligentFormFieldLabel as FieldLabel,
732
+ IntelligentFormFieldText as Text,
733
+ IntelligentFormFieldEmail as Email,
734
+ IntelligentFormFieldFile as File,
735
+ IntelligentFormFieldTextArea as TextArea,
736
+ IntelligentFormFieldCheckbox as Checkbox,
737
+ IntelligentFormFieldCheckboxIndicator as CheckboxIndicator,
738
+ IntelligentFormFieldSelect as Select,
739
+ IntelligentFormFieldSelectTrigger as SelectTrigger,
740
+ IntelligentFormFieldSelectValue as SelectValue,
741
+ IntelligentFormFieldSelectIcon as SelectIcon,
742
+ IntelligentFormFieldSelectContent as SelectContent,
743
+ IntelligentFormFieldSelectViewport as SelectViewport,
744
+ IntelligentFormFieldSelectItem as SelectItem,
745
+ IntelligentFormFieldSelectItemText as SelectItemText,
746
+ IntelligentFormFieldSelectItemIndicator as SelectItemIndicator,
747
+ IntelligentFormFieldError as FieldError,
748
+ IntelligentFormBotHeading as BotHeading,
749
+ IntelligentFormBotHeadingIcon as BotHeadingIcon,
750
+ IntelligentFormBotHeadingName as BotHeadingName,
751
+ IntelligentFormLoading as Loading,
752
+ IntelligentFormConfidentResponse as ConfidentResponse,
753
+ IntelligentFormConfidentAnswer as ConfidentAnswer,
754
+ IntelligentFormConfidentResponseButton as ConfidentResponseButton,
755
+ IntelligentFormConfidentResponseButtonIcon as ConfidentResponseButtonIcon,
756
+ IntelligentFormConfidentResponseButtonLabel as ConfidentResponseButtonLabel,
757
+ IntelligentFormSecondaryForm as SecondaryForm,
758
+ IntelligentFormSecondaryFormDescription as SecondaryFormDescription,
759
+ IntelligentFormSecondaryFormFields as SecondaryFormFields,
760
+ IntelligentFormSecondaryFormSubmit as SecondaryFormSubmit,
761
+ IntelligentFormError as Error,
762
+ IntelligentFormSources as Sources,
763
+ IntelligentFormSourcesCaption as SourcesCaption,
764
+ IntelligentFormSourcesList as SourcesList,
765
+ IntelligentFormSource as Source,
766
+ IntelligentFormSourceIcon as SourceIcon,
767
+ IntelligentFormSourceTitle as SourceTitle
768
+ }
769
+ }
770
+
771
+ declare const IntelligentFormBotHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeading>) => JSX.Element;
772
+
773
+ declare const IntelligentFormBotHeadingIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeadingIcon>) => JSX.Element;
774
+
775
+ declare const IntelligentFormBotHeadingName: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.BotHeadingName>) => JSX.Element;
776
+
777
+ declare const IntelligentFormConfidentAnswer: ({ className, componentStyles, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentAnswer>) => JSX.Element;
778
+
779
+ declare const IntelligentFormConfidentResponse: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponse>) => JSX.Element;
780
+
781
+ declare const IntelligentFormConfidentResponseButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponseButton>) => JSX.Element;
782
+
783
+ declare const IntelligentFormConfidentResponseButtonIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ConfidentResponseButtonIcon>) => JSX.Element;
784
+
785
+ declare const IntelligentFormConfidentResponseButtonLabel: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id">>>;
786
+
787
+ declare const IntelligentFormContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Content>) => JSX.Element;
788
+
789
+ declare const IntelligentFormContentScrollArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollArea>) => JSX.Element;
790
+
791
+ declare const IntelligentFormContentScrollAreaCorner: ForwardRefExoticComponent< PolymorphicProps & Omit< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaCornerProps & RefAttributes<HTMLDivElement>, "_id">>>;
792
+
793
+ declare const IntelligentFormContentScrollAreaScrollbar: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaScrollbar>) => JSX.Element;
794
+
795
+ declare const IntelligentFormContentScrollAreaThumb: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaThumb>) => JSX.Element;
796
+
797
+ declare const IntelligentFormContentScrollAreaViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.ContentScrollAreaViewport>) => JSX.Element;
798
+
799
+ declare const IntelligentFormError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Error>) => JSX.Element;
800
+
801
+ declare const IntelligentFormField: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormField>) => JSX.Element;
802
+
803
+ declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckbox>) => JSX.Element;
804
+
805
+ declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
806
+
807
+ declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => JSX.Element;
808
+
809
+ declare const IntelligentFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldError>) => JSX.Element;
810
+
811
+ declare const IntelligentFormFieldFile: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldFile>) => JSX.Element;
812
+
813
+ declare const IntelligentFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldLabel>) => JSX.Element;
814
+
815
+ declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => JSX.Element;
816
+
817
+ declare const IntelligentFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectContent>) => JSX.Element;
818
+
819
+ declare const IntelligentFormFieldSelectIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectIcon>) => JSX.Element;
820
+
821
+ declare const IntelligentFormFieldSelectItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectItem>) => JSX.Element;
822
+
823
+ declare const IntelligentFormFieldSelectItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectItemIndicator>) => JSX.Element;
824
+
825
+ declare const IntelligentFormFieldSelectItemText: ForwardRefExoticComponent< PolymorphicProps & Omit< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectItemTextProps & RefAttributes<HTMLSpanElement>, "_id">>>;
826
+
827
+ declare const IntelligentFormFieldSelectTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectTrigger>) => JSX.Element;
828
+
829
+ declare const IntelligentFormFieldSelectValue: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick< SelectValueProps & RefAttributes<HTMLSpanElement>, "_id">>>>) => JSX.Element;
830
+
831
+ declare const IntelligentFormFieldSelectViewport: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectViewport>) => JSX.Element;
832
+
833
+ declare const IntelligentFormFieldText: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldText>) => JSX.Element;
834
+
835
+ declare const IntelligentFormFieldTextArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldTextArea>) => JSX.Element;
836
+
837
+ declare const IntelligentFormHeading: ({ className, ...props }: ComponentPropsWithRef<typeof IntelligentFormPrimitive.Heading>) => JSX.Element;
838
+
839
+ declare const IntelligentFormLoading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Loading>) => JSX.Element;
840
+
841
+ declare const IntelligentFormPrimaryForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryForm>) => JSX.Element;
842
+
843
+ declare const IntelligentFormPrimaryFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormDescription>) => JSX.Element;
844
+
845
+ declare const IntelligentFormPrimaryFormFields: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormFields>) => JSX.Element;
846
+
847
+ declare const IntelligentFormPrimaryFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.PrimaryFormSubmit>) => JSX.Element;
848
+
849
+ declare const IntelligentFormProvider: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Provider>) => JSX.Element;
850
+
851
+ declare const IntelligentFormRoot: ({ className, ...props }: ComponentPropsWithRef<typeof IntelligentFormPrimitive.Root>) => JSX.Element;
852
+
853
+ declare const IntelligentFormSecondaryForm: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryForm>) => JSX.Element;
854
+
855
+ declare const IntelligentFormSecondaryFormDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormDescription>) => JSX.Element;
856
+
857
+ declare const IntelligentFormSecondaryFormFields: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormFields>) => JSX.Element;
858
+
859
+ declare const IntelligentFormSecondaryFormSubmit: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SecondaryFormSubmit>) => JSX.Element;
860
+
861
+ declare const IntelligentFormSource: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Source>) => JSX.Element;
862
+
863
+ declare const IntelligentFormSourceIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourceIcon>) => JSX.Element;
864
+
865
+ declare const IntelligentFormSources: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Sources>) => JSX.Element;
866
+
867
+ declare const IntelligentFormSourcesCaption: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourcesCaption>) => JSX.Element;
868
+
869
+ declare const IntelligentFormSourcesList: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourcesList>) => JSX.Element;
870
+
871
+ declare const IntelligentFormSourceTitle: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SourceTitle>) => JSX.Element;
872
+
873
+ declare const IntelligentFormSuccess: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.Success>) => JSX.Element;
874
+
875
+ declare const IntelligentFormSuccessHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessHeading>) => JSX.Element;
876
+
877
+ declare const IntelligentFormSuccessIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessIcon>) => JSX.Element;
878
+
879
+ declare const IntelligentFormSuccessMessage: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.SuccessMessage>) => JSX.Element;
880
+
881
+ export declare function LoadingIndicator(): JSX.Element;
882
+
883
+ export declare namespace Modal {
884
+ export {
885
+ Modal_2 as Root,
886
+ ModalOverlay as Overlay,
887
+ ModalContent as Content,
888
+ ModalClose as Close
889
+ }
890
+ }
891
+
892
+ declare const Modal_2: (props: ModalPrimitive.PrimitiveModalProps) => JSX.Element;
893
+
894
+ declare const ModalClose: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Close>) => JSX.Element;
895
+
896
+ declare const ModalContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Content>) => JSX.Element;
897
+
898
+ declare const ModalOverlay: ({ className, ...props }: React.ComponentPropsWithRef<typeof ModalPrimitive.Overlay>) => JSX.Element;
899
+
900
+ export declare namespace SearchBar {
901
+ export {
902
+ SearchBarContainer,
903
+ SearchBarButton,
904
+ SearchBarContentWrapper,
905
+ SearchBarText,
906
+ SearchBarIcon,
907
+ SearchBarKbdWrapper,
908
+ SearchBarKbdModifier,
909
+ SearchBarKbdShortcutKey
910
+ }
911
+ }
912
+
913
+ declare const SearchBarButton: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarButton>) => JSX.Element;
914
+
915
+ declare const SearchBarContainer: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarContainer>) => JSX.Element;
916
+
917
+ declare const SearchBarContentWrapper: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarContentWrapper>) => JSX.Element;
918
+
919
+ declare const SearchBarIcon: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarIcon>) => JSX.Element;
920
+
921
+ declare const SearchBarKbdModifier: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdModifier>) => JSX.Element;
922
+
923
+ declare const SearchBarKbdShortcutKey: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdShortcutKey>) => JSX.Element;
924
+
925
+ declare const SearchBarKbdWrapper: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarKbdWrapper>) => JSX.Element;
926
+
927
+ declare const SearchBarText: ({ className, ...props }: ComponentPropsWithRef<typeof SearchBarPrimitive.SearchBarText>) => JSX.Element;
928
+
929
+ export declare const Shadow: (props: ShadowProps) => JSX.Element;
930
+
931
+ export declare type ShadowProps = React.ComponentPropsWithRef<typeof InkeepShadow>;
932
+
933
+ export declare const widgetToggle: (props?: ({
934
+ slot?: "root" | "icon" | "button" | null | undefined;
935
+ } & ClassProp) | undefined) => string;
936
+
937
+
938
+ export * from "@inkeep/cxkit-primitives";
939
+
940
+ export { }