@hubspot/ui-extensions 0.11.0 → 0.11.2

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 (93) hide show
  1. package/dist/__synced__/experimental/types.synced.d.ts +3 -4
  2. package/dist/__synced__/remoteComponents.synced.d.ts +168 -355
  3. package/dist/__synced__/remoteComponents.synced.js +186 -83
  4. package/dist/__synced__/types/components/button.synced.d.ts +6 -0
  5. package/dist/__synced__/types/components/index.synced.d.ts +38 -38
  6. package/dist/__synced__/types/index.synced.d.ts +7 -7
  7. package/dist/__synced__/types/index.synced.js +1 -9
  8. package/dist/__synced__/types/shared.synced.d.ts +2 -3
  9. package/dist/__synced__/utils/remote-component-registry.synced.d.ts +80 -0
  10. package/dist/__synced__/utils/remote-component-registry.synced.js +64 -0
  11. package/dist/__tests__/crm/hooks/useAssociations.spec.js +33 -29
  12. package/dist/__tests__/crm/hooks/useCrmProperties.spec.js +19 -18
  13. package/dist/__tests__/crm/utils/fetchAssociations.spec.js +8 -7
  14. package/dist/__tests__/crm/utils/fetchCrmProperties.spec.js +34 -33
  15. package/dist/crm/index.d.ts +1 -1
  16. package/dist/crm/index.js +1 -1
  17. package/dist/experimental/index.d.ts +1 -1
  18. package/dist/experimental/index.js +1 -1
  19. package/dist/experimental/testing/__tests__/debug.spec.d.ts +1 -0
  20. package/dist/experimental/testing/__tests__/debug.spec.js +43 -0
  21. package/dist/experimental/testing/__tests__/find.spec.d.ts +1 -0
  22. package/dist/experimental/testing/__tests__/find.spec.js +33 -0
  23. package/dist/experimental/testing/__tests__/findAll.spec.d.ts +1 -0
  24. package/dist/experimental/testing/__tests__/findAll.spec.js +12 -0
  25. package/dist/experimental/testing/__tests__/findAllChildren.spec.d.ts +1 -0
  26. package/dist/experimental/testing/__tests__/findAllChildren.spec.js +48 -0
  27. package/dist/experimental/testing/__tests__/findChild.spec.d.ts +1 -0
  28. package/dist/experimental/testing/__tests__/findChild.spec.js +29 -0
  29. package/dist/experimental/testing/__tests__/fragments.spec.d.ts +1 -0
  30. package/dist/experimental/testing/__tests__/fragments.spec.js +59 -0
  31. package/dist/experimental/testing/__tests__/invalid-components.spec.d.ts +1 -0
  32. package/dist/experimental/testing/__tests__/invalid-components.spec.js +88 -0
  33. package/dist/experimental/testing/__tests__/isMatch.spec.d.ts +1 -0
  34. package/dist/experimental/testing/__tests__/isMatch.spec.js +60 -0
  35. package/dist/experimental/testing/__tests__/maybeFind.spec.d.ts +1 -0
  36. package/dist/experimental/testing/__tests__/maybeFind.spec.js +58 -0
  37. package/dist/experimental/testing/__tests__/maybeFindChild.spec.d.ts +1 -0
  38. package/dist/experimental/testing/__tests__/maybeFindChild.spec.js +65 -0
  39. package/dist/experimental/testing/__tests__/trigger.spec.d.ts +1 -0
  40. package/dist/experimental/testing/__tests__/trigger.spec.js +40 -0
  41. package/dist/experimental/testing/__tests__/type-utils.spec.d.ts +1 -0
  42. package/dist/experimental/testing/__tests__/type-utils.spec.js +163 -0
  43. package/dist/experimental/testing/__tests__/waitFor.spec.d.ts +1 -0
  44. package/dist/experimental/testing/__tests__/waitFor.spec.js +55 -0
  45. package/dist/experimental/testing/index.d.ts +3 -0
  46. package/dist/experimental/testing/index.js +3 -0
  47. package/dist/experimental/testing/internal/constants.d.ts +2 -0
  48. package/dist/experimental/testing/internal/constants.js +1 -0
  49. package/dist/experimental/testing/internal/convert.d.ts +10 -0
  50. package/dist/experimental/testing/internal/convert.js +131 -0
  51. package/dist/experimental/testing/internal/debug.d.ts +8 -0
  52. package/dist/experimental/testing/internal/debug.js +19 -0
  53. package/dist/experimental/testing/internal/document.d.ts +14 -0
  54. package/dist/experimental/testing/internal/document.js +37 -0
  55. package/dist/experimental/testing/internal/element.d.ts +11 -0
  56. package/dist/experimental/testing/internal/element.js +67 -0
  57. package/dist/experimental/testing/internal/errors.d.ts +56 -0
  58. package/dist/experimental/testing/internal/errors.js +70 -0
  59. package/dist/experimental/testing/internal/fragment.d.ts +8 -0
  60. package/dist/experimental/testing/internal/fragment.js +44 -0
  61. package/dist/experimental/testing/internal/match.d.ts +19 -0
  62. package/dist/experimental/testing/internal/match.js +42 -0
  63. package/dist/experimental/testing/internal/print.d.ts +6 -0
  64. package/dist/experimental/testing/internal/print.js +114 -0
  65. package/dist/experimental/testing/internal/query.d.ts +57 -0
  66. package/dist/experimental/testing/internal/query.js +213 -0
  67. package/dist/experimental/testing/internal/root.d.ts +8 -0
  68. package/dist/experimental/testing/internal/root.js +44 -0
  69. package/dist/experimental/testing/internal/text.d.ts +9 -0
  70. package/dist/experimental/testing/internal/text.js +16 -0
  71. package/dist/experimental/testing/internal/utils/promise-utils.d.ts +14 -0
  72. package/dist/experimental/testing/internal/utils/promise-utils.js +14 -0
  73. package/dist/experimental/testing/render.d.ts +9 -0
  74. package/dist/experimental/testing/render.js +155 -0
  75. package/dist/experimental/testing/types.d.ts +2 -1
  76. package/dist/hubspot.d.ts +1 -1
  77. package/dist/index.d.ts +2 -2
  78. package/dist/index.js +2 -2
  79. package/dist/pages/home/index.d.ts +1 -1
  80. package/dist/pages/home/index.js +1 -1
  81. package/package.json +19 -16
  82. package/dist/__synced__/appHomeRemoteComponents.synced.d.ts +0 -28
  83. package/dist/__synced__/appHomeRemoteComponents.synced.js +0 -21
  84. package/dist/__synced__/crmRemoteComponents.synced.d.ts +0 -66
  85. package/dist/__synced__/crmRemoteComponents.synced.js +0 -15
  86. package/dist/__synced__/experimentalRemoteComponents.synced.d.ts +0 -94
  87. package/dist/__synced__/experimentalRemoteComponents.synced.js +0 -56
  88. package/dist/coreComponents.d.ts +0 -848
  89. package/dist/coreComponents.js +0 -582
  90. package/dist/experimental/types.d.ts +0 -240
  91. package/dist/experimental/types.js +0 -5
  92. package/dist/types.d.ts +0 -3214
  93. package/dist/types.js +0 -244
@@ -1,5 +1,12 @@
1
- /// <reference types="react" />
2
- import type * as types from './types/components/index.synced';
1
+ import type * as experimentalTypes from './experimental/types.synced';
2
+ import type * as componentTypes from './types/components/index.synced';
3
+ import * as crmTypes from './types/crm.synced';
4
+ /**
5
+ * Represents a registry of HubSpot-provided React components that should only be used **internally** by the UI extension SDK.
6
+ *
7
+ * @internal
8
+ */
9
+ export declare const __hubSpotComponentRegistry: import("./utils/remote-component-registry.synced").RemoteComponentRegistry;
3
10
  /**
4
11
  * The `Alert` component renders an alert within a card. Use this component to give usage guidance, notify users of action results, or warn them about potential issues or failures.
5
12
  *
@@ -8,11 +15,7 @@ import type * as types from './types/components/index.synced';
8
15
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/alert Docs}
9
16
  * - {@link https://app.hubspot.com/docs/48008916/reference/ui-components/standard-components/alert#variants Variants}
10
17
  */
11
- export declare const Alert: "Alert" & {
12
- readonly type?: "Alert" | undefined;
13
- readonly props?: types.AlertProps | undefined;
14
- readonly children?: true | undefined;
15
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Alert", types.AlertProps, true>>;
18
+ export declare const Alert: import("..").HubSpotReactComponent<componentTypes.AlertProps>;
16
19
  /**
17
20
  * The `Button` component renders a single button. Use this component to enable users to perform actions, such as submitting a form, sending data to an external system, or deleting data.
18
21
  *
@@ -22,11 +25,7 @@ export declare const Alert: "Alert" & {
22
25
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button#usage-examples Examples}
23
26
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#button Design Pattern Examples}
24
27
  */
25
- export declare const Button: "Button" & {
26
- readonly type?: "Button" | undefined;
27
- readonly props?: types.ButtonProps | undefined;
28
- readonly children?: true | undefined;
29
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Button", types.ButtonProps, true>>;
28
+ export declare const Button: import("..").HubSpotReactComponent<componentTypes.ButtonProps>;
30
29
  /**
31
30
  * The `ButtonRow` component renders a row of specified `Button` components. Use this component when you want to include multiple buttons in a row.
32
31
  *
@@ -34,16 +33,8 @@ export declare const Button: "Button" & {
34
33
  *
35
34
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button-row Docs}
36
35
  */
37
- export declare const ButtonRow: "ButtonRow" & {
38
- readonly type?: "ButtonRow" | undefined;
39
- readonly props?: types.ButtonRowProps | undefined;
40
- readonly children?: true | undefined;
41
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ButtonRow", types.ButtonRowProps, true>>;
42
- export declare const Card: "Card" & {
43
- readonly type?: "Card" | undefined;
44
- readonly props?: types.CardProps | undefined;
45
- readonly children?: true | undefined;
46
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Card", types.CardProps, true>>;
36
+ export declare const ButtonRow: import("..").HubSpotReactComponent<componentTypes.ButtonRowProps>;
37
+ export declare const Card: import("..").HubSpotReactComponent<componentTypes.CardProps>;
47
38
  /**
48
39
  * The `DescriptionList` component renders pairs of labels and values. Use this component to display pairs of labels and values in a way that's easy to read at a glance.
49
40
  *
@@ -51,11 +42,7 @@ export declare const Card: "Card" & {
51
42
  *
52
43
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
53
44
  */
54
- export declare const DescriptionList: "DescriptionList" & {
55
- readonly type?: "DescriptionList" | undefined;
56
- readonly props?: types.DescriptionListProps | undefined;
57
- readonly children?: true | undefined;
58
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DescriptionList", types.DescriptionListProps, true>>;
45
+ export declare const DescriptionList: import("..").HubSpotReactComponent<componentTypes.DescriptionListProps>;
59
46
  /**
60
47
  * The `DescriptionListItem` component renders a single set of a label and value. Use this component within a `DescriptionList` component.
61
48
  *
@@ -63,11 +50,7 @@ export declare const DescriptionList: "DescriptionList" & {
63
50
  *
64
51
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
65
52
  */
66
- export declare const DescriptionListItem: "DescriptionListItem" & {
67
- readonly type?: "DescriptionListItem" | undefined;
68
- readonly props?: types.DescriptionListItemProps | undefined;
69
- readonly children?: true | undefined;
70
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DescriptionListItem", types.DescriptionListItemProps, true>>;
53
+ export declare const DescriptionListItem: import("..").HubSpotReactComponent<componentTypes.DescriptionListItemProps>;
71
54
  /**
72
55
  * The `Divider` component renders a grey, horizontal line for spacing out components vertically or creating sections in an extension. Use this component to space out other components when the content needs more separation than white space.
73
56
  *
@@ -75,11 +58,7 @@ export declare const DescriptionListItem: "DescriptionListItem" & {
75
58
  *
76
59
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/divider Docs}
77
60
  */
78
- export declare const Divider: "Divider" & {
79
- readonly type?: "Divider" | undefined;
80
- readonly props?: types.DividerProps | undefined;
81
- readonly children?: true | undefined;
82
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Divider", types.DividerProps, true>>;
61
+ export declare const Divider: import("..").HubSpotReactComponent<componentTypes.DividerProps>;
83
62
  /**
84
63
  * The `EmptyState` component sets the content that appears when the extension is in an empty state. Use this component when there's no content or data to help guide users.
85
64
  *
@@ -87,11 +66,7 @@ export declare const Divider: "Divider" & {
87
66
  *
88
67
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/empty-state Docs}
89
68
  */
90
- export declare const EmptyState: "EmptyState" & {
91
- readonly type?: "EmptyState" | undefined;
92
- readonly props?: types.EmptyStateProps | undefined;
93
- readonly children?: true | undefined;
94
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"EmptyState", types.EmptyStateProps, true>>;
69
+ export declare const EmptyState: import("..").HubSpotReactComponent<componentTypes.EmptyStateProps>;
95
70
  /**
96
71
  * The `ErrorState` component sets the content of an erroring extension. Use this component to guide users through resolving errors that your extension might encounter.
97
72
  *
@@ -99,11 +74,7 @@ export declare const EmptyState: "EmptyState" & {
99
74
  *
100
75
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/error-state Docs}
101
76
  */
102
- export declare const ErrorState: "ErrorState" & {
103
- readonly type?: "ErrorState" | undefined;
104
- readonly props?: types.ErrorStateProps | undefined;
105
- readonly children?: true | undefined;
106
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ErrorState", types.ErrorStateProps, true>>;
77
+ export declare const ErrorState: import("..").HubSpotReactComponent<componentTypes.ErrorStateProps>;
107
78
  /**
108
79
  * The `Form` component renders a form that can contain other subcomponents, such as `Input`, `Select`, and `Button`. Use this component to enable users to submit data to HubSpot or an external system.
109
80
  *
@@ -112,11 +83,7 @@ export declare const ErrorState: "ErrorState" & {
112
83
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/form Docs}
113
84
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#form Design Pattern Examples}
114
85
  */
115
- export declare const Form: "Form" & {
116
- readonly type?: "Form" | undefined;
117
- readonly props?: types.FormProps | undefined;
118
- readonly children?: true | undefined;
119
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Form", types.FormProps, true>>;
86
+ export declare const Form: import("..").HubSpotReactComponent<componentTypes.FormProps>;
120
87
  /**
121
88
  * The `Heading` component renders large heading text. Use this component to introduce or differentiate sections of your component.
122
89
  *
@@ -124,11 +91,7 @@ export declare const Form: "Form" & {
124
91
  *
125
92
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/heading Docs}
126
93
  */
127
- export declare const Heading: "Heading" & {
128
- readonly type?: "Heading" | undefined;
129
- readonly props?: types.HeadingProps | undefined;
130
- readonly children?: true | undefined;
131
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Heading", types.HeadingProps, true>>;
94
+ export declare const Heading: import("..").HubSpotReactComponent<componentTypes.HeadingProps>;
132
95
  /**
133
96
  * The `Image` component renders an image. Use this component to add a logo or other visual brand identity asset, or to accentuate other content in the extension.
134
97
  *
@@ -136,11 +99,7 @@ export declare const Heading: "Heading" & {
136
99
  *
137
100
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/image Docs}
138
101
  */
139
- export declare const Image: "Image" & {
140
- readonly type?: "Image" | undefined;
141
- readonly props?: types.ImageProps | undefined;
142
- readonly children?: true | undefined;
143
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Image", types.ImageProps, true>>;
102
+ export declare const Image: import("..").HubSpotReactComponent<componentTypes.ImageProps>;
144
103
  /**
145
104
  * The `Input` component renders a text input field where a user can enter a custom text value. Like other inputs, this component should be used within a `Form` that has a submit button.
146
105
  *
@@ -148,11 +107,7 @@ export declare const Image: "Image" & {
148
107
  *
149
108
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/input Docs}
150
109
  */
151
- export declare const Input: "Input" & {
152
- readonly type?: "Input" | undefined;
153
- readonly props?: types.InputProps | undefined;
154
- readonly children?: true | undefined;
155
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Input", types.InputProps, true>>;
110
+ export declare const Input: import("..").HubSpotReactComponent<componentTypes.InputProps>;
156
111
  /**
157
112
  * The `Link` component renders a clickable hyperlink. Use links to direct users to an external web page or another part of the HubSpot app.
158
113
  *
@@ -160,11 +115,7 @@ export declare const Input: "Input" & {
160
115
  *
161
116
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/link Docs}
162
117
  */
163
- export declare const Link: "Link" & {
164
- readonly type?: "Link" | undefined;
165
- readonly props?: types.LinkProps | undefined;
166
- readonly children?: true | undefined;
167
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Link", types.LinkProps, true>>;
118
+ export declare const Link: import("..").HubSpotReactComponent<componentTypes.LinkProps>;
168
119
  /**
169
120
  * The `TextArea` component renders a fillable text field. Like other inputs, this component should be used within a `Form` that has a submit button.
170
121
  *
@@ -172,17 +123,9 @@ export declare const Link: "Link" & {
172
123
  *
173
124
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text-area Docs}
174
125
  */
175
- export declare const TextArea: "TextArea" & {
176
- readonly type?: "TextArea" | undefined;
177
- readonly props?: types.TextAreaProps | undefined;
178
- readonly children?: true | undefined;
179
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TextArea", types.TextAreaProps, true>>;
126
+ export declare const TextArea: import("..").HubSpotReactComponent<componentTypes.TextAreaProps>;
180
127
  /** @deprecated use TextArea instead. With a capital A.*/
181
- export declare const Textarea: "Textarea" & {
182
- readonly type?: "Textarea" | undefined;
183
- readonly props?: types.TextAreaProps | undefined;
184
- readonly children?: true | undefined;
185
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Textarea", types.TextAreaProps, true>>;
128
+ export declare const Textarea: import("..").HubSpotReactComponent<componentTypes.TextAreaProps>;
186
129
  /**
187
130
  * The `LoadingSpinner` component renders a visual indicator for when an extension is loading or processing data.
188
131
  *
@@ -190,11 +133,7 @@ export declare const Textarea: "Textarea" & {
190
133
  *
191
134
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-spinner Docs}
192
135
  */
193
- export declare const LoadingSpinner: "LoadingSpinner" & {
194
- readonly type?: "LoadingSpinner" | undefined;
195
- readonly props?: types.LoadingSpinnerProps | undefined;
196
- readonly children?: true | undefined;
197
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LoadingSpinner", types.LoadingSpinnerProps, true>>;
136
+ export declare const LoadingSpinner: import("..").HubSpotReactComponent<componentTypes.LoadingSpinnerProps>;
198
137
  /**
199
138
  * The `ProgressBar` component renders a visual indicator showing a numeric and/or percentage-based representation of progress. The percentage is calculated based on the maximum possible value specified in the component.
200
139
  *
@@ -202,11 +141,7 @@ export declare const LoadingSpinner: "LoadingSpinner" & {
202
141
  *
203
142
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/progress-bar Docs}
204
143
  */
205
- export declare const ProgressBar: "ProgressBar" & {
206
- readonly type?: "ProgressBar" | undefined;
207
- readonly props?: types.ProgressBarProps | undefined;
208
- readonly children?: true | undefined;
209
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ProgressBar", types.ProgressBarProps, true>>;
144
+ export declare const ProgressBar: import("..").HubSpotReactComponent<componentTypes.ProgressBarProps>;
210
145
  /**
211
146
  * The `Select` component renders a dropdown menu select field where a user can select a single value. A search bar will be automatically included when there are more than seven options. Like other inputs, this component should be used within a `Form` that has a submit button.
212
147
  *
@@ -214,11 +149,7 @@ export declare const ProgressBar: "ProgressBar" & {
214
149
  *
215
150
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/select Docs}
216
151
  */
217
- export declare const Select: "Select" & {
218
- readonly type?: "Select" | undefined;
219
- readonly props?: types.SelectProps | undefined;
220
- readonly children?: true | undefined;
221
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Select", types.SelectProps, true>>;
152
+ export declare const Select: import("..").HubSpotReactComponent<componentTypes.SelectProps>;
222
153
  /**
223
154
  * The `Tag` component renders a tag to label or categorize information or other components. Tags can be static or clickable for invoking functions.
224
155
  *
@@ -226,11 +157,7 @@ export declare const Select: "Select" & {
226
157
  *
227
158
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tag Docs}
228
159
  */
229
- export declare const Tag: "Tag" & {
230
- readonly type?: "Tag" | undefined;
231
- readonly props?: types.TagProps | undefined;
232
- readonly children?: true | undefined;
233
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tag", types.TagProps, true>>;
160
+ export declare const Tag: import("..").HubSpotReactComponent<componentTypes.TagProps>;
234
161
  /**
235
162
  * The `Text` component renders text with formatting options.
236
163
  *
@@ -238,11 +165,7 @@ export declare const Tag: "Tag" & {
238
165
  *
239
166
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text Docs}
240
167
  */
241
- export declare const Text: "Text" & {
242
- readonly type?: "Text" | undefined;
243
- readonly props?: types.TextProps | undefined;
244
- readonly children?: true | undefined;
245
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Text", types.TextProps, true>>;
168
+ export declare const Text: import("..").HubSpotReactComponent<componentTypes.TextProps>;
246
169
  /**
247
170
  * The `Tile` component renders a square tile that can contain other components. Use this component to create groups of related components.
248
171
  *
@@ -250,17 +173,9 @@ export declare const Text: "Text" & {
250
173
  *
251
174
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tile Docs}
252
175
  */
253
- export declare const Tile: "Tile" & {
254
- readonly type?: "Tile" | undefined;
255
- readonly props?: types.TileProps | undefined;
256
- readonly children?: true | undefined;
257
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tile", types.TileProps, true>>;
176
+ export declare const Tile: import("..").HubSpotReactComponent<componentTypes.TileProps>;
258
177
  /** @deprecated use Flex instead. It will be removed in the next release. */
259
- export declare const Stack: "Stack" & {
260
- readonly type?: "Stack" | undefined;
261
- readonly props?: types.StackProps | undefined;
262
- readonly children?: true | undefined;
263
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Stack", types.StackProps, true>>;
178
+ export declare const Stack: import("..").HubSpotReactComponent<componentTypes.StackProps>;
264
179
  /**
265
180
  * The `ToggleGroup` component renders a list of selectable options, either in radio button or checkbox form.
266
181
  *
@@ -268,27 +183,15 @@ export declare const Stack: "Stack" & {
268
183
  *
269
184
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle-group Docs}
270
185
  */
271
- export declare const ToggleGroup: "ToggleGroup" & {
272
- readonly type?: "ToggleGroup" | undefined;
273
- readonly props?: ({
274
- toggleType: "checkboxList";
275
- onChange?: ((value: string[]) => void) | undefined;
276
- value?: string[] | undefined;
277
- } & import("./types/components/toggleInputs.synced").CommonGroupProps) | ({
278
- toggleType: "radioButtonList";
279
- onChange?: ((value: string) => void) | undefined;
280
- value?: string | undefined;
281
- } & import("./types/components/toggleInputs.synced").CommonGroupProps) | undefined;
282
- readonly children?: true | undefined;
283
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ToggleGroup", ({
186
+ export declare const ToggleGroup: import("..").HubSpotReactComponent<({
284
187
  toggleType: "checkboxList";
285
188
  onChange?: ((value: string[]) => void) | undefined;
286
189
  value?: string[] | undefined;
287
- } & import("./types/components/toggleInputs.synced").CommonGroupProps) | ({
190
+ } & componentTypes.CommonGroupProps) | ({
288
191
  toggleType: "radioButtonList";
289
192
  onChange?: ((value: string) => void) | undefined;
290
193
  value?: string | undefined;
291
- } & import("./types/components/toggleInputs.synced").CommonGroupProps), true>>;
194
+ } & componentTypes.CommonGroupProps)>;
292
195
  /**
293
196
  * The `StatisticsItem` component renders a single data point within a `Statistics` component. Use this component to display a single data point, such as a number or percentage.
294
197
  *
@@ -296,11 +199,7 @@ export declare const ToggleGroup: "ToggleGroup" & {
296
199
  *
297
200
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
298
201
  */
299
- export declare const StatisticsItem: "StatisticsItem" & {
300
- readonly type?: "StatisticsItem" | undefined;
301
- readonly props?: types.StatisticsItemProps | undefined;
302
- readonly children?: true | undefined;
303
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StatisticsItem", types.StatisticsItemProps, true>>;
202
+ export declare const StatisticsItem: import("..").HubSpotReactComponent<componentTypes.StatisticsItemProps>;
304
203
  /**
305
204
  * The `Statistics` component renders a visual spotlight of one or more data points. Includes the `StatisticsItem` and `StatisticsTrend` subcomponents.
306
205
  *
@@ -308,11 +207,7 @@ export declare const StatisticsItem: "StatisticsItem" & {
308
207
  *
309
208
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
310
209
  */
311
- export declare const Statistics: "Statistics" & {
312
- readonly type?: "Statistics" | undefined;
313
- readonly props?: types.StatisticsProps | undefined;
314
- readonly children?: true | undefined;
315
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Statistics", types.StatisticsProps, true>>;
210
+ export declare const Statistics: import("..").HubSpotReactComponent<componentTypes.StatisticsProps>;
316
211
  /**
317
212
  * The `StatisticsTrend` component renders a percentage trend value and direction alonside a `StatisticsItem` component. Use this component within the `StatisticsItem` component.
318
213
  *
@@ -320,11 +215,7 @@ export declare const Statistics: "Statistics" & {
320
215
  *
321
216
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
322
217
  */
323
- export declare const StatisticsTrend: "StatisticsTrend" & {
324
- readonly type?: "StatisticsTrend" | undefined;
325
- readonly props?: types.StatisticsTrendProps | undefined;
326
- readonly children?: true | undefined;
327
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StatisticsTrend", types.StatisticsTrendProps, true>>;
218
+ export declare const StatisticsTrend: import("..").HubSpotReactComponent<componentTypes.StatisticsTrendProps>;
328
219
  /**
329
220
  * The `Table` component renders a table. To format the table, use the subcomponents `TableHead`, `TableRow`, `TableHeader`, `TableBody`, `TableCell`and `TableFooter`.
330
221
  *
@@ -333,11 +224,7 @@ export declare const StatisticsTrend: "StatisticsTrend" & {
333
224
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
334
225
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#table Design Pattern Example}
335
226
  */
336
- export declare const Table: "Table" & {
337
- readonly type?: "Table" | undefined;
338
- readonly props?: types.TableProps | undefined;
339
- readonly children?: true | undefined;
340
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Table", types.TableProps, true>>;
227
+ export declare const Table: import("..").HubSpotReactComponent<componentTypes.TableProps>;
341
228
  /**
342
229
  * The `TableFooter` component renders a footer within a `Table` component. Use this component to display totals or other summary information.
343
230
  *
@@ -345,11 +232,7 @@ export declare const Table: "Table" & {
345
232
  *
346
233
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
347
234
  */
348
- export declare const TableFooter: "TableFooter" & {
349
- readonly type?: "TableFooter" | undefined;
350
- readonly props?: types.TableElementProps | undefined;
351
- readonly children?: true | undefined;
352
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableFooter", types.TableElementProps, true>>;
235
+ export declare const TableFooter: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
353
236
  /**
354
237
  * The `TableCell` component renders individual cells within the `TableBody` component.
355
238
  *
@@ -357,11 +240,7 @@ export declare const TableFooter: "TableFooter" & {
357
240
  *
358
241
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
359
242
  */
360
- export declare const TableCell: "TableCell" & {
361
- readonly type?: "TableCell" | undefined;
362
- readonly props?: types.TableCellProps | undefined;
363
- readonly children?: true | undefined;
364
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableCell", types.TableCellProps, true>>;
243
+ export declare const TableCell: import("..").HubSpotReactComponent<componentTypes.TableCellProps>;
365
244
  /**
366
245
  * The `TableRow` component renders a row within the `TableBody` or `TableHead` component.
367
246
  *
@@ -369,11 +248,7 @@ export declare const TableCell: "TableCell" & {
369
248
  *
370
249
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
371
250
  */
372
- export declare const TableRow: "TableRow" & {
373
- readonly type?: "TableRow" | undefined;
374
- readonly props?: types.TableElementProps | undefined;
375
- readonly children?: true | undefined;
376
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableRow", types.TableElementProps, true>>;
251
+ export declare const TableRow: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
377
252
  /**
378
253
  * The `TableBody` component renders the body (rows and cells) of a table within the `Table` component.
379
254
  *
@@ -381,11 +256,7 @@ export declare const TableRow: "TableRow" & {
381
256
  *
382
257
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
383
258
  */
384
- export declare const TableBody: "TableBody" & {
385
- readonly type?: "TableBody" | undefined;
386
- readonly props?: types.TableElementProps | undefined;
387
- readonly children?: true | undefined;
388
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableBody", types.TableElementProps, true>>;
259
+ export declare const TableBody: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
389
260
  /**
390
261
  * The `TableHeader` component renders individual cells containing bolded column labels, within `TableHead`.
391
262
  *
@@ -393,11 +264,7 @@ export declare const TableBody: "TableBody" & {
393
264
  *
394
265
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
395
266
  */
396
- export declare const TableHeader: "TableHeader" & {
397
- readonly type?: "TableHeader" | undefined;
398
- readonly props?: types.TableHeaderProps | undefined;
399
- readonly children?: true | undefined;
400
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableHeader", types.TableHeaderProps, true>>;
267
+ export declare const TableHeader: import("..").HubSpotReactComponent<componentTypes.TableHeaderProps>;
401
268
  /**
402
269
  * The `TableHead` component renders the header section of the `Table` component, containing column labels.
403
270
  *
@@ -405,11 +272,7 @@ export declare const TableHeader: "TableHeader" & {
405
272
  *
406
273
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
407
274
  */
408
- export declare const TableHead: "TableHead" & {
409
- readonly type?: "TableHead" | undefined;
410
- readonly props?: types.TableElementProps | undefined;
411
- readonly children?: true | undefined;
412
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TableHead", types.TableElementProps, true>>;
275
+ export declare const TableHead: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
413
276
  /**
414
277
  * The `NumberInput` component renders a number input field. Like other inputs, this component should be used within a `Form` that has a submit button.
415
278
  *
@@ -417,11 +280,7 @@ export declare const TableHead: "TableHead" & {
417
280
  *
418
281
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/number-input Docs}
419
282
  */
420
- export declare const NumberInput: "NumberInput" & {
421
- readonly type?: "NumberInput" | undefined;
422
- readonly props?: types.NumberInputProps | undefined;
423
- readonly children?: true | undefined;
424
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"NumberInput", types.NumberInputProps, true>>;
283
+ export declare const NumberInput: import("..").HubSpotReactComponent<componentTypes.NumberInputProps>;
425
284
  /**
426
285
  * The `Box` component renders an empty div container for fine tuning the spacing of components. Commonly used with the `Flex` component.
427
286
  *
@@ -430,11 +289,7 @@ export declare const NumberInput: "NumberInput" & {
430
289
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/box Docs}
431
290
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
432
291
  */
433
- export declare const Box: "Box" & {
434
- readonly type?: "Box" | undefined;
435
- readonly props?: types.BoxProps | undefined;
436
- readonly children?: true | undefined;
437
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Box", types.BoxProps, true>>;
292
+ export declare const Box: import("..").HubSpotReactComponent<componentTypes.BoxProps>;
438
293
  /**
439
294
  * The `StepIndicator` component renders an indicator to show the current step of a multi-step process.
440
295
  *
@@ -442,11 +297,7 @@ export declare const Box: "Box" & {
442
297
  *
443
298
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/step-indicator Docs}
444
299
  */
445
- export declare const StepIndicator: "StepIndicator" & {
446
- readonly type?: "StepIndicator" | undefined;
447
- readonly props?: types.StepIndicatorProps | undefined;
448
- readonly children?: true | undefined;
449
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StepIndicator", types.StepIndicatorProps, true>>;
300
+ export declare const StepIndicator: import("..").HubSpotReactComponent<componentTypes.StepIndicatorProps>;
450
301
  /**
451
302
  * The `Accordion` component renders an expandable and collapsable section that can contain other components. This component can be helpful for saving space and breaking up extension content.
452
303
  *
@@ -454,11 +305,7 @@ export declare const StepIndicator: "StepIndicator" & {
454
305
  *
455
306
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/accordion Docs}
456
307
  */
457
- export declare const Accordion: "Accordion" & {
458
- readonly type?: "Accordion" | undefined;
459
- readonly props?: types.AccordionProps | undefined;
460
- readonly children?: true | undefined;
461
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Accordion", types.AccordionProps, true>>;
308
+ export declare const Accordion: import("..").HubSpotReactComponent<componentTypes.AccordionProps>;
462
309
  /**
463
310
  * The MultiSelect component renders a dropdown menu select field where a user can select multiple values. Commonly used within the `Form` component.
464
311
  *
@@ -466,11 +313,7 @@ export declare const Accordion: "Accordion" & {
466
313
  *
467
314
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/multi-select Docs}
468
315
  */
469
- export declare const MultiSelect: "MultiSelect" & {
470
- readonly type?: "MultiSelect" | undefined;
471
- readonly props?: types.MultiSelectProps | undefined;
472
- readonly children?: true | undefined;
473
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"MultiSelect", types.MultiSelectProps, true>>;
316
+ export declare const MultiSelect: import("..").HubSpotReactComponent<componentTypes.MultiSelectProps>;
474
317
  /**
475
318
  * The `Flex` component renders a flex container that can contain other components, and arrange them with props. Use this component to create a flexible and responsive layout.
476
319
  *
@@ -479,11 +322,7 @@ export declare const MultiSelect: "MultiSelect" & {
479
322
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/flex Docs}
480
323
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
481
324
  */
482
- export declare const Flex: "Flex" & {
483
- readonly type?: "Flex" | undefined;
484
- readonly props?: types.FlexProps | undefined;
485
- readonly children?: true | undefined;
486
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Flex", types.FlexProps, true>>;
325
+ export declare const Flex: import("..").HubSpotReactComponent<componentTypes.FlexProps>;
487
326
  /**
488
327
  * The `DateInput` component renders an input field where a user can select a date. Commonly used within the `Form` component.
489
328
  *
@@ -491,11 +330,7 @@ export declare const Flex: "Flex" & {
491
330
  *
492
331
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/date-input Docs}
493
332
  */
494
- export declare const DateInput: "DateInput" & {
495
- readonly type?: "DateInput" | undefined;
496
- readonly props?: types.DateInputProps | undefined;
497
- readonly children?: true | undefined;
498
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DateInput", types.DateInputProps, true>>;
333
+ export declare const DateInput: import("..").HubSpotReactComponent<componentTypes.DateInputProps>;
499
334
  /**
500
335
  * The `Checkbox` component renders a single checkbox input. Commonly used within the `Form` component. If you want to display multiple checkboxes, you should use `ToggleGroup` instead, as it comes with extra logic for handling multiple checkboxes.
501
336
  *
@@ -503,19 +338,11 @@ export declare const DateInput: "DateInput" & {
503
338
  *
504
339
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/checkbox Docs}
505
340
  */
506
- export declare const Checkbox: "Checkbox" & {
507
- readonly type?: "Checkbox" | undefined;
508
- readonly props?: types.CheckboxProps | undefined;
509
- readonly children?: true | undefined;
510
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Checkbox", types.CheckboxProps, true>>;
341
+ export declare const Checkbox: import("..").HubSpotReactComponent<componentTypes.CheckboxProps>;
511
342
  /**
512
343
  * The `RadioButton` component renders a single radio input. Commonly used within the `Form` component. If you want to display multiple radio inputs, you should use `ToggleGroup` instead, as it comes with extra logic for handling multiple inputs.
513
344
  */
514
- export declare const RadioButton: "RadioButton" & {
515
- readonly type?: "RadioButton" | undefined;
516
- readonly props?: types.RadioButtonProps | undefined;
517
- readonly children?: true | undefined;
518
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"RadioButton", types.RadioButtonProps, true>>;
345
+ export declare const RadioButton: import("..").HubSpotReactComponent<componentTypes.RadioButtonProps>;
519
346
  /**
520
347
  * The `List` component renders a list of items. Use this component to display a list of items, such as a list of contacts, tasks, or other data. A list can be styled as a bulleted list or a numbered list.
521
348
  *
@@ -523,11 +350,7 @@ export declare const RadioButton: "RadioButton" & {
523
350
  *
524
351
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/list Docs}
525
352
  */
526
- export declare const List: "List" & {
527
- readonly type?: "List" | undefined;
528
- readonly props?: types.ListProps | undefined;
529
- readonly children?: true | undefined;
530
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"List", types.ListProps, true>>;
353
+ export declare const List: import("..").HubSpotReactComponent<componentTypes.ListProps>;
531
354
  /**
532
355
  * The `Toggle` component renders a boolean toggle switch that can be configured with sizing, label position, read-only, and more.
533
356
  *
@@ -535,11 +358,7 @@ export declare const List: "List" & {
535
358
  *
536
359
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle Docs}
537
360
  */
538
- export declare const Toggle: "Toggle" & {
539
- readonly type?: "Toggle" | undefined;
540
- readonly props?: types.ToggleProps | undefined;
541
- readonly children?: true | undefined;
542
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Toggle", types.ToggleProps, true>>;
361
+ export declare const Toggle: import("..").HubSpotReactComponent<componentTypes.ToggleProps>;
543
362
  /**
544
363
  * The `Dropdown` component renders a dropdown menu that can appear as a button or hyperlink. Use this component to enable users to select from multiple options in a compact list.
545
364
  *
@@ -547,14 +366,16 @@ export declare const Toggle: "Toggle" & {
547
366
  *
548
367
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
549
368
  */
550
- export declare function Dropdown(props: types.DropdownProps): JSX.Element;
551
- export declare namespace Dropdown {
552
- var ButtonItem: "DropdownButtonItem" & {
553
- readonly type?: "DropdownButtonItem" | undefined;
554
- readonly props?: types.DropdownButtonItemProps | undefined;
555
- readonly children?: true | undefined;
556
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"DropdownButtonItem", types.DropdownButtonItemProps, true>>;
557
- }
369
+ export declare const Dropdown: import("..").HubSpotReactComponent<import("..").UnknownComponentProps> & {
370
+ /**
371
+ * The `Dropdown.ButtonItem` component represents a single option within a `Dropdown` menu. Use this component as a child of the `Dropdown` component.
372
+ *
373
+ * **Links:**
374
+ *
375
+ * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
376
+ */
377
+ ButtonItem: import("..").HubSpotReactComponent<componentTypes.DropdownButtonItemProps>;
378
+ };
558
379
  /**
559
380
  * The Panel component renders a panel overlay on the right side of the page and contains other components.
560
381
  *
@@ -564,11 +385,7 @@ export declare namespace Dropdown {
564
385
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
565
386
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#panel Design Pattern Examples}
566
387
  */
567
- export declare const Panel: "Panel" & {
568
- readonly type?: "Panel" | undefined;
569
- readonly props?: types.PanelProps | undefined;
570
- readonly children?: true | undefined;
571
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Panel", types.PanelProps, true>>;
388
+ export declare const Panel: import("..").HubSpotReactComponent<componentTypes.PanelProps>;
572
389
  /**
573
390
  * The `PanelFooter` is a sticky footer component displayed at the bottom of a `Panel` component. Use this component to display actions or other content that should be visible at all times. Include only one `PanelFooter` component per `Panel`.
574
391
  *
@@ -577,11 +394,7 @@ export declare const Panel: "Panel" & {
577
394
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
578
395
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
579
396
  */
580
- export declare const PanelFooter: "PanelFooter" & {
581
- readonly type?: "PanelFooter" | undefined;
582
- readonly props?: types.PanelFooterProps | undefined;
583
- readonly children?: true | undefined;
584
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"PanelFooter", types.PanelFooterProps, true>>;
397
+ export declare const PanelFooter: import("..").HubSpotReactComponent<componentTypes.PanelFooterProps>;
585
398
  /**
586
399
  * The `PanelBody` component is a container that wraps the panel's content and makes it scrollable. Include only one `PanelBody` component per `Panel`.
587
400
  *
@@ -590,11 +403,7 @@ export declare const PanelFooter: "PanelFooter" & {
590
403
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
591
404
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
592
405
  */
593
- export declare const PanelBody: "PanelBody" & {
594
- readonly type?: "PanelBody" | undefined;
595
- readonly props?: types.PanelBodyProps | undefined;
596
- readonly children?: true | undefined;
597
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"PanelBody", types.PanelBodyProps, true>>;
406
+ export declare const PanelBody: import("..").HubSpotReactComponent<componentTypes.PanelBodyProps>;
598
407
  /**
599
408
  * The `PanelSection` component is a container that adds padding and bottom margin to provide spacing between content. Use the `PanelSection` component to separate content within a `PanelBody`.
600
409
  *
@@ -603,11 +412,7 @@ export declare const PanelBody: "PanelBody" & {
603
412
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
604
413
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
605
414
  */
606
- export declare const PanelSection: "PanelSection" & {
607
- readonly type?: "PanelSection" | undefined;
608
- readonly props?: types.PanelSectionProps | undefined;
609
- readonly children?: true | undefined;
610
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"PanelSection", types.PanelSectionProps, true>>;
415
+ export declare const PanelSection: import("..").HubSpotReactComponent<componentTypes.PanelSectionProps>;
611
416
  /**
612
417
  * The `StepperInput` component renders a number input field that can be increased or decreased by a set number. Commonly used within the `Form` component.
613
418
  *
@@ -615,11 +420,7 @@ export declare const PanelSection: "PanelSection" & {
615
420
  *
616
421
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/stepper-input Docs}
617
422
  */
618
- export declare const StepperInput: "StepperInput" & {
619
- readonly type?: "StepperInput" | undefined;
620
- readonly props?: types.StepperInputProps | undefined;
621
- readonly children?: true | undefined;
622
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StepperInput", types.StepperInputProps, true>>;
423
+ export declare const StepperInput: import("..").HubSpotReactComponent<componentTypes.StepperInputProps>;
623
424
  /**
624
425
  * The Modal component renders a pop-up overlay that can contain other components.
625
426
  *
@@ -629,11 +430,7 @@ export declare const StepperInput: "StepperInput" & {
629
430
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
630
431
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#modal Design Pattern Examples}
631
432
  */
632
- export declare const Modal: "Modal" & {
633
- readonly type?: "Modal" | undefined;
634
- readonly props?: types.ModalProps | undefined;
635
- readonly children?: true | undefined;
636
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Modal", types.ModalProps, true>>;
433
+ export declare const Modal: import("..").HubSpotReactComponent<componentTypes.ModalProps>;
637
434
  /**
638
435
  * The `ModalBody` component contains the main content of the modal. One `ModalBody` is required per `Modal`.
639
436
  *
@@ -642,11 +439,7 @@ export declare const Modal: "Modal" & {
642
439
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
643
440
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
644
441
  */
645
- export declare const ModalBody: "ModalBody" & {
646
- readonly type?: "ModalBody" | undefined;
647
- readonly props?: types.ModalBodyProps | undefined;
648
- readonly children?: true | undefined;
649
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ModalBody", types.ModalBodyProps, true>>;
442
+ export declare const ModalBody: import("..").HubSpotReactComponent<componentTypes.ModalBodyProps>;
650
443
  /**
651
444
  * The `ModalFooter` component is an optional component to format the footer section of the modal. Use one `ModalFooter` per `Modal`.
652
445
  *
@@ -655,11 +448,7 @@ export declare const ModalBody: "ModalBody" & {
655
448
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
656
449
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
657
450
  */
658
- export declare const ModalFooter: "ModalFooter" & {
659
- readonly type?: "ModalFooter" | undefined;
660
- readonly props?: types.ModalFooterProps | undefined;
661
- readonly children?: true | undefined;
662
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ModalFooter", types.ModalFooterProps, true>>;
451
+ export declare const ModalFooter: import("..").HubSpotReactComponent<componentTypes.ModalFooterProps>;
663
452
  /**
664
453
  * Use the `Icon` component to render a visual icon within other components. It can generally be used inside most components, excluding ones that don't support child components.
665
454
  *
@@ -667,11 +456,7 @@ export declare const ModalFooter: "ModalFooter" & {
667
456
  *
668
457
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/icon Docs}
669
458
  */
670
- export declare const Icon: "Icon" & {
671
- readonly type?: "Icon" | undefined;
672
- readonly props?: types.IconProps | undefined;
673
- readonly children?: true | undefined;
674
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Icon", types.IconProps, true>>;
459
+ export declare const Icon: import("..").HubSpotReactComponent<componentTypes.IconProps>;
675
460
  /**
676
461
  * The `StatusTag` component renders a visual indicator to display the current status of an item. Status tags can be static or clickable.
677
462
  *
@@ -680,11 +465,7 @@ export declare const Icon: "Icon" & {
680
465
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag Docs}
681
466
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag#variants Variants}
682
467
  */
683
- export declare const StatusTag: "StatusTag" & {
684
- readonly type?: "StatusTag" | undefined;
685
- readonly props?: types.StatusTagProps | undefined;
686
- readonly children?: true | undefined;
687
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"StatusTag", types.StatusTagProps, true>>;
468
+ export declare const StatusTag: import("..").HubSpotReactComponent<componentTypes.StatusTagProps>;
688
469
  /**
689
470
  * The `LoadingButton` component renders a button with loading state options.
690
471
  *
@@ -692,11 +473,7 @@ export declare const StatusTag: "StatusTag" & {
692
473
  *
693
474
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-button Docs}
694
475
  */
695
- export declare const LoadingButton: "LoadingButton" & {
696
- readonly type?: "LoadingButton" | undefined;
697
- readonly props?: types.LoadingButtonProps | undefined;
698
- readonly children?: true | undefined;
699
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LoadingButton", types.LoadingButtonProps, true>>;
476
+ export declare const LoadingButton: import("..").HubSpotReactComponent<componentTypes.LoadingButtonProps>;
700
477
  /**
701
478
  * The `BarChart` component renders a bar chart for visualizing data. This type of chart is best suited for comparing categorical data.
702
479
  *
@@ -706,11 +483,7 @@ export declare const LoadingButton: "LoadingButton" & {
706
483
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
707
484
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
708
485
  */
709
- export declare const BarChart: "BarChart" & {
710
- readonly type?: "BarChart" | undefined;
711
- readonly props?: types.ChartProps | undefined;
712
- readonly children?: true | undefined;
713
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"BarChart", types.ChartProps, true>>;
486
+ export declare const BarChart: import("..").HubSpotReactComponent<componentTypes.ChartProps>;
714
487
  /**
715
488
  * The `LineChart` component renders a line chart for visualizing data. This type of chart is best suited for time series plots or trend data.
716
489
  *
@@ -720,11 +493,7 @@ export declare const BarChart: "BarChart" & {
720
493
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
721
494
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
722
495
  */
723
- export declare const LineChart: "LineChart" & {
724
- readonly type?: "LineChart" | undefined;
725
- readonly props?: types.ChartProps | undefined;
726
- readonly children?: true | undefined;
727
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LineChart", types.ChartProps, true>>;
496
+ export declare const LineChart: import("..").HubSpotReactComponent<componentTypes.ChartProps>;
728
497
  /**
729
498
  * `Tabs` allow you to group related content in a compact space, allowing users to switch between views without leaving the page.
730
499
  * @example
@@ -739,11 +508,7 @@ export declare const LineChart: "LineChart" & {
739
508
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
740
509
  * - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
741
510
  */
742
- export declare const Tabs: "Tabs" & {
743
- readonly type?: "Tabs" | undefined;
744
- readonly props?: types.TabsProps | undefined;
745
- readonly children?: true | undefined;
746
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tabs", types.TabsProps, true>>;
511
+ export declare const Tabs: import("..").HubSpotReactComponent<componentTypes.TabsProps>;
747
512
  /**
748
513
  * Each `Tab` represents a single tab (or "view") within the parent `Tabs` component.
749
514
  * @example
@@ -758,11 +523,7 @@ export declare const Tabs: "Tabs" & {
758
523
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
759
524
  * - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
760
525
  */
761
- export declare const Tab: "Tab" & {
762
- readonly type?: "Tab" | undefined;
763
- readonly props?: types.TabProps | undefined;
764
- readonly children?: true | undefined;
765
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tab", types.TabProps, true>>;
526
+ export declare const Tab: import("..").HubSpotReactComponent<componentTypes.TabProps>;
766
527
  /**
767
528
  * The `Illustration` component renders an illustration.
768
529
  *
@@ -770,22 +531,14 @@ export declare const Tab: "Tab" & {
770
531
  *
771
532
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/illustration Illustration Docs}
772
533
  */
773
- export declare const Illustration: "Illustration" & {
774
- readonly type?: "Illustration" | undefined;
775
- readonly props?: types.IllustrationProps | undefined;
776
- readonly children?: true | undefined;
777
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Illustration", types.IllustrationProps, true>>;
534
+ export declare const Illustration: import("..").HubSpotReactComponent<componentTypes.IllustrationProps>;
778
535
  /**
779
536
  * The `Tooltip` component renders a tooltip for a component.
780
537
  *
781
538
  * **Links:**
782
539
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tooltip Documentation}
783
540
  */
784
- export declare const Tooltip: "Tooltip" & {
785
- readonly type?: "Tooltip" | undefined;
786
- readonly props?: types.TooltipProps | undefined;
787
- readonly children?: true | undefined;
788
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Tooltip", types.TooltipProps, true>>;
541
+ export declare const Tooltip: import("..").HubSpotReactComponent<componentTypes.TooltipProps>;
789
542
  /**
790
543
  * The `SearchInput` component renders a search input field.
791
544
  *
@@ -793,11 +546,7 @@ export declare const Tooltip: "Tooltip" & {
793
546
  *
794
547
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/search-input SearchInput Docs}
795
548
  */
796
- export declare const SearchInput: "SearchInput" & {
797
- readonly type?: "SearchInput" | undefined;
798
- readonly props?: types.SearchInputProps | undefined;
799
- readonly children?: true | undefined;
800
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"SearchInput", types.SearchInputProps, true>>;
549
+ export declare const SearchInput: import("..").HubSpotReactComponent<componentTypes.SearchInputProps>;
801
550
  /**
802
551
  * The `TimeInput` component renders an input field where a user can select a time. Commonly used within the `Form` component.
803
552
  *
@@ -805,11 +554,7 @@ export declare const SearchInput: "SearchInput" & {
805
554
  *
806
555
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/time-input Docs}
807
556
  */
808
- export declare const TimeInput: "TimeInput" & {
809
- readonly type?: "TimeInput" | undefined;
810
- readonly props?: types.TimeInputProps | undefined;
811
- readonly children?: true | undefined;
812
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"TimeInput", types.TimeInputProps, true>>;
557
+ export declare const TimeInput: import("..").HubSpotReactComponent<componentTypes.TimeInputProps>;
813
558
  /**
814
559
  * The `CurrencyInput` component renders a currency input field with proper formatting,
815
560
  * currency symbols, and locale-specific display patterns. Commonly used within the `Form` component.
@@ -818,22 +563,14 @@ export declare const TimeInput: "TimeInput" & {
818
563
  *
819
564
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/currency-input Docs}
820
565
  */
821
- export declare const CurrencyInput: "CurrencyInput" & {
822
- readonly type?: "CurrencyInput" | undefined;
823
- readonly props?: types.CurrencyInputProps | undefined;
824
- readonly children?: true | undefined;
825
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CurrencyInput", types.CurrencyInputProps, true>>;
566
+ export declare const CurrencyInput: import("..").HubSpotReactComponent<componentTypes.CurrencyInputProps>;
826
567
  /**
827
568
  * The `Inline` component spreads aligns its children horizontally (along the x-axis).
828
569
  *
829
570
  * **Links:**
830
571
  *
831
572
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/inline Docs}
832
- */ export declare const Inline: "Inline" & {
833
- readonly type?: "Inline" | undefined;
834
- readonly props?: types.InlineProps | undefined;
835
- readonly children?: true | undefined;
836
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Inline", types.InlineProps, true>>;
573
+ */ export declare const Inline: import("..").HubSpotReactComponent<componentTypes.InlineProps>;
837
574
  /**
838
575
  * The `AutoGrid` component renders a responsive grid layout that automatically adjusts the number of columns based on available space. Use this component to create flexible grid layouts for cards, tiles, or other content.
839
576
  *
@@ -841,8 +578,84 @@ export declare const CurrencyInput: "CurrencyInput" & {
841
578
  *
842
579
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/simple-grid Docs}
843
580
  */
844
- export declare const AutoGrid: "AutoGrid" & {
845
- readonly type?: "AutoGrid" | undefined;
846
- readonly props?: types.AutoGridProps | undefined;
847
- readonly children?: true | undefined;
848
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"AutoGrid", types.AutoGridProps, true>>;
581
+ export declare const AutoGrid: import("..").HubSpotReactComponent<componentTypes.AutoGridProps>;
582
+ export declare const CrmPropertyList: import("..").HubSpotReactComponent<crmTypes.CrmPropertyListProps>;
583
+ export declare const CrmAssociationTable: import("..").HubSpotReactComponent<crmTypes.CrmAssociationTableProps>;
584
+ export declare const CrmDataHighlight: import("..").HubSpotReactComponent<crmTypes.CrmDataHighlightProps>;
585
+ export declare const CrmReport: import("..").HubSpotReactComponent<crmTypes.CrmReportProps>;
586
+ export declare const CrmAssociationPivot: import("..").HubSpotReactComponent<crmTypes.CrmAssociationPivotProps>;
587
+ export declare const CrmAssociationPropertyList: import("..").HubSpotReactComponent<crmTypes.CrmAssociationPropertyListProps>;
588
+ export declare const CrmAssociationStageTracker: import("..").HubSpotReactComponent<crmTypes.CrmAssociationStageTrackerProps>;
589
+ export declare const CrmSimpleDeadline: import("..").HubSpotReactComponent<crmTypes.CrmSimpleDeadlineProps>;
590
+ export declare const CrmStageTracker: import("..").HubSpotReactComponent<crmTypes.CrmStageTrackerProps>;
591
+ export declare const CrmStatistics: import("..").HubSpotReactComponent<crmTypes.CrmStatisticsProps>;
592
+ export declare const CrmActionButton: import("..").HubSpotReactComponent<crmTypes.CrmActionButtonProps>;
593
+ export declare const CrmActionLink: import("..").HubSpotReactComponent<crmTypes.CrmActionLinkProps>;
594
+ export declare const CrmCardActions: import("..").HubSpotReactComponent<crmTypes.CrmCardActionsProps>;
595
+ /**
596
+ * The `HeaderActions` component renders a container for action buttons in the app home header. It accepts `PrimaryHeaderActionButton` and `SecondaryHeaderActionButton` as children.
597
+ *
598
+ */
599
+ export declare const HeaderActions: import("..").HubSpotReactComponent<componentTypes.HeaderActionsProps>;
600
+ /**
601
+ * The `PrimaryHeaderActionButton` component renders a primary action button in the app home header. This button is styled as the main call-to-action and only one should be used per `HeaderActions` container.
602
+ *
603
+ */
604
+ export declare const PrimaryHeaderActionButton: import("..").HubSpotReactComponent<componentTypes.HeaderActionButtonProps>;
605
+ /**
606
+ * The `SecondaryHeaderActionButton` component renders a secondary action button in the app home header. Multiple secondary actions can be used and they will be grouped appropriately in the header.
607
+ *
608
+ */
609
+ export declare const SecondaryHeaderActionButton: import("..").HubSpotReactComponent<componentTypes.HeaderActionButtonProps>;
610
+ /**
611
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
612
+ */
613
+ export declare const Iframe: import("..").HubSpotReactComponent<componentTypes.IframeProps>;
614
+ /**
615
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
616
+ */
617
+ export declare const MediaObject: import("..").HubSpotReactComponent<experimentalTypes.MediaObjectProps>;
618
+ /**
619
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
620
+ */
621
+ export declare const Stack2: import("..").HubSpotReactComponent<experimentalTypes.Stack2Props>;
622
+ /**
623
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
624
+ */
625
+ export declare const Center: import("..").HubSpotReactComponent<experimentalTypes.CenterProps>;
626
+ /**
627
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
628
+ */
629
+ export declare const Grid: import("..").HubSpotReactComponent<experimentalTypes.GridProps>;
630
+ /**
631
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
632
+ */
633
+ export declare const GridItem: import("..").HubSpotReactComponent<experimentalTypes.GridItemProps>;
634
+ /**
635
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
636
+ */
637
+ export declare const SettingsView: import("..").HubSpotReactComponent<experimentalTypes.SettingsViewProps>;
638
+ /**
639
+ * The `ExpandableText` component renders a text that can be expanded or collapsed based on a maximum height.
640
+ *
641
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
642
+ *
643
+ * **Links:**
644
+ *
645
+ * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/expandable-text ExpandableText Docs}
646
+ */
647
+ export declare const ExpandableText: import("..").HubSpotReactComponent<experimentalTypes.ExpandableTextProps>;
648
+ /**
649
+ * The `Popover` component renders a popover overlay that can contain other components.
650
+ *
651
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
652
+ *
653
+ * **Links:**
654
+ *
655
+ * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/popover Popover Docs}
656
+ */
657
+ export declare const Popover: import("..").HubSpotReactComponent<experimentalTypes.PopoverProps>;
658
+ /**
659
+ * @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
660
+ */
661
+ export declare const FileInput: import("..").HubSpotReactComponent<experimentalTypes.FileInputProps>;