@hubspot/ui-extensions 0.11.2 → 0.11.4

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 (215) hide show
  1. package/dist/__tests__/crm/hooks/useAssociations.spec.js +4 -4
  2. package/dist/__tests__/crm/hooks/useCrmProperties.spec.js +2 -2
  3. package/dist/__tests__/crm/utils/fetchAssociations.spec.js +5 -5
  4. package/dist/__tests__/crm/utils/fetchCrmProperties.spec.js +4 -4
  5. package/dist/clientTypes.d.ts +1 -0
  6. package/dist/clientTypes.js +1 -1
  7. package/dist/crm/hooks/useAssociations.d.ts +5 -3
  8. package/dist/crm/hooks/useAssociations.js +4 -2
  9. package/dist/crm/hooks/useCrmProperties.d.ts +4 -2
  10. package/dist/crm/hooks/useCrmProperties.js +4 -2
  11. package/dist/crm/index.d.ts +4 -4
  12. package/dist/crm/index.js +3 -3
  13. package/dist/crm/utils/fetchAssociations.d.ts +1 -1
  14. package/dist/experimental/index.d.ts +4 -4
  15. package/dist/experimental/index.js +3 -3
  16. package/dist/experimental/testing/__tests__/createRenderer.spec.js +23 -0
  17. package/dist/experimental/testing/__tests__/debug.spec.js +21 -7
  18. package/dist/experimental/testing/__tests__/find.spec.js +23 -8
  19. package/dist/experimental/testing/__tests__/findAll.spec.js +4 -3
  20. package/dist/experimental/testing/__tests__/findAllChildren.spec.js +14 -8
  21. package/dist/experimental/testing/__tests__/findByTestId.spec.js +126 -0
  22. package/dist/experimental/testing/__tests__/findChild.spec.js +11 -7
  23. package/dist/experimental/testing/__tests__/fragments.spec.js +17 -10
  24. package/dist/experimental/testing/__tests__/invalid-components.spec.js +16 -8
  25. package/dist/experimental/testing/__tests__/isMatch.spec.js +106 -53
  26. package/dist/experimental/testing/__tests__/logger.spec.js +10 -0
  27. package/dist/experimental/testing/__tests__/maybeFind.spec.js +20 -11
  28. package/dist/experimental/testing/__tests__/maybeFindByTestId.spec.js +65 -0
  29. package/dist/experimental/testing/__tests__/maybeFindChild.spec.js +22 -12
  30. package/dist/experimental/testing/__tests__/mocks.actions.spec.js +19 -0
  31. package/dist/experimental/testing/__tests__/mocks.context.spec.js +24 -0
  32. package/dist/experimental/testing/__tests__/mocks.runServerlessFunction.spec.js +35 -0
  33. package/dist/experimental/testing/__tests__/mocks.useAssociations.spec.js +47 -0
  34. package/dist/experimental/testing/__tests__/mocks.useCrmProperties.spec.js +58 -0
  35. package/dist/experimental/testing/__tests__/props.spec.js +13 -0
  36. package/dist/experimental/testing/__tests__/testId.spec.js +18 -0
  37. package/dist/experimental/testing/__tests__/trigger.spec.js +9 -6
  38. package/dist/experimental/testing/__tests__/type-utils.spec.js +12 -10
  39. package/dist/experimental/testing/__tests__/waitFor.spec.js +7 -5
  40. package/dist/experimental/testing/index.d.ts +4 -3
  41. package/dist/experimental/testing/index.js +4 -3
  42. package/dist/experimental/testing/internal/constants.d.ts +2 -2
  43. package/dist/experimental/testing/internal/constants.js +1 -1
  44. package/dist/experimental/testing/internal/convert.d.ts +2 -2
  45. package/dist/experimental/testing/internal/convert.js +42 -24
  46. package/dist/experimental/testing/internal/debug.d.ts +3 -3
  47. package/dist/experimental/testing/internal/debug.js +4 -5
  48. package/dist/experimental/testing/internal/document.d.ts +1 -1
  49. package/dist/experimental/testing/internal/document.js +4 -1
  50. package/dist/experimental/testing/internal/element.d.ts +4 -3
  51. package/dist/experimental/testing/internal/element.js +15 -10
  52. package/dist/experimental/testing/internal/errors.d.ts +45 -2
  53. package/dist/experimental/testing/internal/errors.js +44 -2
  54. package/dist/experimental/testing/internal/fragment.d.ts +3 -2
  55. package/dist/experimental/testing/internal/fragment.js +13 -9
  56. package/dist/experimental/testing/internal/match.d.ts +3 -12
  57. package/dist/experimental/testing/internal/match.js +0 -23
  58. package/dist/experimental/testing/internal/mocks/index.d.ts +17 -0
  59. package/dist/experimental/testing/internal/mocks/index.js +46 -0
  60. package/dist/experimental/testing/internal/mocks/mock-extension-point-api.d.ts +2 -0
  61. package/dist/experimental/testing/internal/mocks/mock-extension-point-api.js +166 -0
  62. package/dist/experimental/testing/internal/mocks/mock-hooks.d.ts +2 -0
  63. package/dist/experimental/testing/internal/mocks/mock-hooks.js +59 -0
  64. package/dist/experimental/testing/internal/print.d.ts +2 -2
  65. package/dist/experimental/testing/internal/print.js +17 -11
  66. package/dist/experimental/testing/internal/query.d.ts +19 -9
  67. package/dist/experimental/testing/internal/query.js +91 -28
  68. package/dist/experimental/testing/internal/root.d.ts +1 -1
  69. package/dist/experimental/testing/internal/root.js +12 -8
  70. package/dist/experimental/testing/internal/text.d.ts +3 -2
  71. package/dist/experimental/testing/internal/text.js +12 -3
  72. package/dist/experimental/testing/internal/type-utils-internal.d.ts +44 -0
  73. package/dist/experimental/testing/internal/type-utils-internal.js +54 -0
  74. package/dist/experimental/testing/internal/types-internal.d.ts +20 -2
  75. package/dist/experimental/testing/render.d.ts +32 -6
  76. package/dist/experimental/testing/render.js +96 -32
  77. package/dist/experimental/testing/type-utils.d.ts +2 -2
  78. package/dist/experimental/testing/type-utils.js +1 -1
  79. package/dist/experimental/testing/types.d.ts +127 -10
  80. package/dist/experimental/testing/utils.d.ts +11 -0
  81. package/dist/experimental/testing/utils.js +24 -0
  82. package/dist/hubspot.d.ts +2 -4
  83. package/dist/hubspot.js +3 -3
  84. package/dist/index.d.ts +5 -5
  85. package/dist/index.js +5 -5
  86. package/dist/internal/global-utils.d.ts +6 -0
  87. package/dist/internal/global-utils.js +37 -0
  88. package/dist/internal/hook-utils.d.ts +19 -0
  89. package/dist/internal/hook-utils.js +34 -0
  90. package/dist/logger.d.ts +1 -8
  91. package/dist/logger.js +3 -2
  92. package/dist/pages/home/index.d.ts +1 -1
  93. package/dist/pages/home/index.js +1 -1
  94. package/dist/{__synced__/remoteComponents.synced.d.ts → shared/remoteComponents.d.ts} +103 -103
  95. package/dist/{__synced__/remoteComponents.synced.js → shared/remoteComponents.js} +1 -1
  96. package/dist/{__synced__/types/components/accordion.synced.d.ts → shared/types/components/accordion.d.ts} +2 -2
  97. package/dist/{__synced__/types/components/alert.synced.d.ts → shared/types/components/alert.d.ts} +2 -1
  98. package/dist/{__synced__/types/components/app-home-header-actions.synced.d.ts → shared/types/components/app-home-header-actions.d.ts} +4 -4
  99. package/dist/{__synced__/types/components/button-row.synced.d.ts → shared/types/components/button-row.d.ts} +2 -2
  100. package/dist/{__synced__/types/components/button.synced.d.ts → shared/types/components/button.d.ts} +3 -3
  101. package/dist/{__synced__/types/components/card.synced.d.ts → shared/types/components/card.d.ts} +2 -1
  102. package/dist/{__synced__/types/components/chart.synced.d.ts → shared/types/components/chart.d.ts} +2 -1
  103. package/dist/{__synced__/types/components/description-list.synced.d.ts → shared/types/components/description-list.d.ts} +3 -2
  104. package/dist/{__synced__/types/components/divider.synced.d.ts → shared/types/components/divider.d.ts} +2 -2
  105. package/dist/{__synced__/types/components/dropdown.synced.d.ts → shared/types/components/dropdown.d.ts} +5 -5
  106. package/dist/{__synced__/types/components/empty-state.synced.d.ts → shared/types/components/empty-state.d.ts} +2 -1
  107. package/dist/{__synced__/types/components/error-state.synced.d.ts → shared/types/components/error-state.d.ts} +2 -1
  108. package/dist/{__synced__/types/components/form.synced.d.ts → shared/types/components/form.d.ts} +3 -3
  109. package/dist/{__synced__/types/components/heading.synced.d.ts → shared/types/components/heading.d.ts} +2 -1
  110. package/dist/{__synced__/types/components/icon.synced.d.ts → shared/types/components/icon.d.ts} +2 -2
  111. package/dist/{__synced__/types/components/iframe.synced.d.ts → shared/types/components/iframe.d.ts} +2 -2
  112. package/dist/{__synced__/types/components/illustration.synced.d.ts → shared/types/components/illustration.d.ts} +2 -1
  113. package/dist/{__synced__/types/components/image.synced.d.ts → shared/types/components/image.d.ts} +3 -3
  114. package/dist/shared/types/components/index.d.ts +38 -0
  115. package/dist/{__synced__/types/components/inputs.synced.d.ts → shared/types/components/inputs.d.ts} +2 -1
  116. package/dist/{__synced__/types/components/layouts.synced.d.ts → shared/types/components/layouts.d.ts} +6 -6
  117. package/dist/{__synced__/types/components/link.synced.d.ts → shared/types/components/link.d.ts} +3 -3
  118. package/dist/{__synced__/types/components/list.synced.d.ts → shared/types/components/list.d.ts} +2 -1
  119. package/dist/{__synced__/types/components/loading-spinner.synced.d.ts → shared/types/components/loading-spinner.d.ts} +2 -2
  120. package/dist/{__synced__/types/components/modal.synced.d.ts → shared/types/components/modal.d.ts} +4 -4
  121. package/dist/{__synced__/types/components/panel.synced.d.ts → shared/types/components/panel.d.ts} +5 -5
  122. package/dist/{__synced__/types/components/progress-bar.synced.d.ts → shared/types/components/progress-bar.d.ts} +2 -1
  123. package/dist/{__synced__/types/components/selects.synced.d.ts → shared/types/components/selects.d.ts} +2 -1
  124. package/dist/{__synced__/types/components/statistics.synced.d.ts → shared/types/components/statistics.d.ts} +4 -3
  125. package/dist/{__synced__/types/components/status-tag.synced.d.ts → shared/types/components/status-tag.d.ts} +2 -1
  126. package/dist/{__synced__/types/components/step-indicator.synced.d.ts → shared/types/components/step-indicator.d.ts} +2 -2
  127. package/dist/{__synced__/types/components/table.synced.d.ts → shared/types/components/table.d.ts} +5 -4
  128. package/dist/shared/types/components/table.js +1 -0
  129. package/dist/{__synced__/types/components/tabs.synced.d.ts → shared/types/components/tabs.d.ts} +3 -2
  130. package/dist/shared/types/components/tabs.js +1 -0
  131. package/dist/{__synced__/types/components/tag.synced.d.ts → shared/types/components/tag.d.ts} +3 -3
  132. package/dist/shared/types/components/tag.js +1 -0
  133. package/dist/{__synced__/types/components/text.synced.d.ts → shared/types/components/text.d.ts} +2 -1
  134. package/dist/shared/types/components/text.js +1 -0
  135. package/dist/{__synced__/types/components/tile.synced.d.ts → shared/types/components/tile.d.ts} +2 -1
  136. package/dist/shared/types/components/tile.js +1 -0
  137. package/dist/{__synced__/types/components/toggle.synced.d.ts → shared/types/components/toggle.d.ts} +2 -2
  138. package/dist/shared/types/components/toggle.js +1 -0
  139. package/dist/{__synced__/types/components/toggleInputs.synced.d.ts → shared/types/components/toggleInputs.d.ts} +4 -4
  140. package/dist/shared/types/components/toggleInputs.js +1 -0
  141. package/dist/{__synced__/types/components/tooltip.synced.d.ts → shared/types/components/tooltip.d.ts} +2 -1
  142. package/dist/shared/types/components/tooltip.js +1 -0
  143. package/dist/{__synced__/types/context.synced.d.ts → shared/types/context.d.ts} +1 -1
  144. package/dist/shared/types/context.js +1 -0
  145. package/dist/{__synced__/types/crm.synced.d.ts → shared/types/crm.d.ts} +13 -13
  146. package/dist/shared/types/crm.js +1 -0
  147. package/dist/{__synced__/experimental/types.synced.d.ts → shared/types/experimental.d.ts} +10 -14
  148. package/dist/shared/types/experimental.js +1 -0
  149. package/dist/shared/types/extend.d.ts +4 -0
  150. package/dist/shared/types/extend.js +1 -0
  151. package/dist/{__synced__/types/extension-points.synced.d.ts → shared/types/extension-points.d.ts} +18 -10
  152. package/dist/{__synced__/types/http-requests.synced.d.ts → shared/types/http-requests.d.ts} +1 -1
  153. package/dist/shared/types/index.d.ts +8 -0
  154. package/dist/shared/types/index.js +1 -0
  155. package/dist/shared/types/logger.d.ts +7 -0
  156. package/dist/shared/types/logger.js +1 -0
  157. package/dist/shared/types/reactions.js +1 -0
  158. package/dist/{__synced__/types/shared.synced.d.ts → shared/types/shared.d.ts} +3 -0
  159. package/dist/shared/types/worker-globals.d.ts +17 -0
  160. package/dist/shared/types/worker-globals.js +1 -0
  161. package/dist/{__synced__/utils/remote-component-registry.synced.d.ts → shared/utils/remote-component-registry.d.ts} +1 -1
  162. package/dist/{__synced__/utils/remote-component-registry.synced.js → shared/utils/remote-component-registry.js} +0 -1
  163. package/package.json +6 -4
  164. package/dist/__synced__/experimental/types.synced.js +0 -5
  165. package/dist/__synced__/types/components/index.synced.d.ts +0 -38
  166. package/dist/__synced__/types/index.synced.d.ts +0 -8
  167. package/dist/__synced__/types/index.synced.js +0 -1
  168. /package/dist/{__synced__/types/actions.synced.js → experimental/testing/__tests__/createRenderer.spec.d.ts} +0 -0
  169. /package/dist/{__synced__/types/components/accordion.synced.js → experimental/testing/__tests__/findByTestId.spec.d.ts} +0 -0
  170. /package/dist/{__synced__/types/components/alert.synced.js → experimental/testing/__tests__/logger.spec.d.ts} +0 -0
  171. /package/dist/{__synced__/types/components/app-home-header-actions.synced.js → experimental/testing/__tests__/maybeFindByTestId.spec.d.ts} +0 -0
  172. /package/dist/{__synced__/types/components/button-row.synced.js → experimental/testing/__tests__/mocks.actions.spec.d.ts} +0 -0
  173. /package/dist/{__synced__/types/components/button.synced.js → experimental/testing/__tests__/mocks.context.spec.d.ts} +0 -0
  174. /package/dist/{__synced__/types/components/card.synced.js → experimental/testing/__tests__/mocks.runServerlessFunction.spec.d.ts} +0 -0
  175. /package/dist/{__synced__/types/components/description-list.synced.js → experimental/testing/__tests__/mocks.useAssociations.spec.d.ts} +0 -0
  176. /package/dist/{__synced__/types/components/divider.synced.js → experimental/testing/__tests__/mocks.useCrmProperties.spec.d.ts} +0 -0
  177. /package/dist/{__synced__/types/components/dropdown.synced.js → experimental/testing/__tests__/props.spec.d.ts} +0 -0
  178. /package/dist/{__synced__/types/components/empty-state.synced.js → experimental/testing/__tests__/testId.spec.d.ts} +0 -0
  179. /package/dist/{__synced__/types/actions.synced.d.ts → shared/types/actions.d.ts} +0 -0
  180. /package/dist/{__synced__/types/components/error-state.synced.js → shared/types/actions.js} +0 -0
  181. /package/dist/{__synced__/types/components/form.synced.js → shared/types/components/accordion.js} +0 -0
  182. /package/dist/{__synced__/types/components/heading.synced.js → shared/types/components/alert.js} +0 -0
  183. /package/dist/{__synced__/types/components/icon.synced.js → shared/types/components/app-home-header-actions.js} +0 -0
  184. /package/dist/{__synced__/types/components/iframe.synced.js → shared/types/components/button-row.js} +0 -0
  185. /package/dist/{__synced__/types/components/image.synced.js → shared/types/components/button.js} +0 -0
  186. /package/dist/{__synced__/types/components/index.synced.js → shared/types/components/card.js} +0 -0
  187. /package/dist/{__synced__/types/components/chart.synced.js → shared/types/components/chart.js} +0 -0
  188. /package/dist/{__synced__/types/components/inputs.synced.js → shared/types/components/description-list.js} +0 -0
  189. /package/dist/{__synced__/types/components/layouts.synced.js → shared/types/components/divider.js} +0 -0
  190. /package/dist/{__synced__/types/components/link.synced.js → shared/types/components/dropdown.js} +0 -0
  191. /package/dist/{__synced__/types/components/list.synced.js → shared/types/components/empty-state.js} +0 -0
  192. /package/dist/{__synced__/types/components/loading-spinner.synced.js → shared/types/components/error-state.js} +0 -0
  193. /package/dist/{__synced__/types/components/modal.synced.js → shared/types/components/form.js} +0 -0
  194. /package/dist/{__synced__/types/components/panel.synced.js → shared/types/components/heading.js} +0 -0
  195. /package/dist/{__synced__/types/components/progress-bar.synced.js → shared/types/components/icon.js} +0 -0
  196. /package/dist/{__synced__/types/components/selects.synced.js → shared/types/components/iframe.js} +0 -0
  197. /package/dist/{__synced__/types/components/illustration.synced.js → shared/types/components/illustration.js} +0 -0
  198. /package/dist/{__synced__/types/components/statistics.synced.js → shared/types/components/image.js} +0 -0
  199. /package/dist/{__synced__/types/components/status-tag.synced.js → shared/types/components/index.js} +0 -0
  200. /package/dist/{__synced__/types/components/step-indicator.synced.js → shared/types/components/inputs.js} +0 -0
  201. /package/dist/{__synced__/types/components/table.synced.js → shared/types/components/layouts.js} +0 -0
  202. /package/dist/{__synced__/types/components/tabs.synced.js → shared/types/components/link.js} +0 -0
  203. /package/dist/{__synced__/types/components/tag.synced.js → shared/types/components/list.js} +0 -0
  204. /package/dist/{__synced__/types/components/text.synced.js → shared/types/components/loading-spinner.js} +0 -0
  205. /package/dist/{__synced__/types/components/tile.synced.js → shared/types/components/modal.js} +0 -0
  206. /package/dist/{__synced__/types/components/toggle.synced.js → shared/types/components/panel.js} +0 -0
  207. /package/dist/{__synced__/types/components/toggleInputs.synced.js → shared/types/components/progress-bar.js} +0 -0
  208. /package/dist/{__synced__/types/components/tooltip.synced.js → shared/types/components/selects.js} +0 -0
  209. /package/dist/{__synced__/types/context.synced.js → shared/types/components/statistics.js} +0 -0
  210. /package/dist/{__synced__/types/crm.synced.js → shared/types/components/status-tag.js} +0 -0
  211. /package/dist/{__synced__/types/reactions.synced.js → shared/types/components/step-indicator.js} +0 -0
  212. /package/dist/{__synced__/types/extension-points.synced.js → shared/types/extension-points.js} +0 -0
  213. /package/dist/{__synced__/types/http-requests.synced.js → shared/types/http-requests.js} +0 -0
  214. /package/dist/{__synced__/types/reactions.synced.d.ts → shared/types/reactions.d.ts} +0 -0
  215. /package/dist/{__synced__/types/shared.synced.js → shared/types/shared.js} +0 -0
@@ -1,12 +1,12 @@
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';
1
+ import type * as experimentalTypes from './types/experimental.ts';
2
+ import type * as componentTypes from './types/components/index.ts';
3
+ import * as crmTypes from './types/crm.ts';
4
4
  /**
5
5
  * Represents a registry of HubSpot-provided React components that should only be used **internally** by the UI extension SDK.
6
6
  *
7
7
  * @internal
8
8
  */
9
- export declare const __hubSpotComponentRegistry: import("./utils/remote-component-registry.synced").RemoteComponentRegistry;
9
+ export declare const __hubSpotComponentRegistry: import("./utils/remote-component-registry.tsx").RemoteComponentRegistry;
10
10
  /**
11
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.
12
12
  *
@@ -15,7 +15,7 @@ export declare const __hubSpotComponentRegistry: import("./utils/remote-componen
15
15
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/alert Docs}
16
16
  * - {@link https://app.hubspot.com/docs/48008916/reference/ui-components/standard-components/alert#variants Variants}
17
17
  */
18
- export declare const Alert: import("..").HubSpotReactComponent<componentTypes.AlertProps>;
18
+ export declare const Alert: import("./types/shared.ts").HubSpotReactComponent<componentTypes.AlertProps>;
19
19
  /**
20
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.
21
21
  *
@@ -25,7 +25,7 @@ export declare const Alert: import("..").HubSpotReactComponent<componentTypes.Al
25
25
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button#usage-examples Examples}
26
26
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#button Design Pattern Examples}
27
27
  */
28
- export declare const Button: import("..").HubSpotReactComponent<componentTypes.ButtonProps>;
28
+ export declare const Button: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ButtonProps>;
29
29
  /**
30
30
  * The `ButtonRow` component renders a row of specified `Button` components. Use this component when you want to include multiple buttons in a row.
31
31
  *
@@ -33,8 +33,8 @@ export declare const Button: import("..").HubSpotReactComponent<componentTypes.B
33
33
  *
34
34
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/button-row Docs}
35
35
  */
36
- export declare const ButtonRow: import("..").HubSpotReactComponent<componentTypes.ButtonRowProps>;
37
- export declare const Card: import("..").HubSpotReactComponent<componentTypes.CardProps>;
36
+ export declare const ButtonRow: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ButtonRowProps>;
37
+ export declare const Card: import("./types/shared.ts").HubSpotReactComponent<componentTypes.CardProps>;
38
38
  /**
39
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.
40
40
  *
@@ -42,7 +42,7 @@ export declare const Card: import("..").HubSpotReactComponent<componentTypes.Car
42
42
  *
43
43
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
44
44
  */
45
- export declare const DescriptionList: import("..").HubSpotReactComponent<componentTypes.DescriptionListProps>;
45
+ export declare const DescriptionList: import("./types/shared.ts").HubSpotReactComponent<componentTypes.DescriptionListProps>;
46
46
  /**
47
47
  * The `DescriptionListItem` component renders a single set of a label and value. Use this component within a `DescriptionList` component.
48
48
  *
@@ -50,7 +50,7 @@ export declare const DescriptionList: import("..").HubSpotReactComponent<compone
50
50
  *
51
51
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/description-list Docs}
52
52
  */
53
- export declare const DescriptionListItem: import("..").HubSpotReactComponent<componentTypes.DescriptionListItemProps>;
53
+ export declare const DescriptionListItem: import("./types/shared.ts").HubSpotReactComponent<componentTypes.DescriptionListItemProps>;
54
54
  /**
55
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.
56
56
  *
@@ -58,7 +58,7 @@ export declare const DescriptionListItem: import("..").HubSpotReactComponent<com
58
58
  *
59
59
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/divider Docs}
60
60
  */
61
- export declare const Divider: import("..").HubSpotReactComponent<componentTypes.DividerProps>;
61
+ export declare const Divider: import("./types/shared.ts").HubSpotReactComponent<componentTypes.DividerProps>;
62
62
  /**
63
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.
64
64
  *
@@ -66,7 +66,7 @@ export declare const Divider: import("..").HubSpotReactComponent<componentTypes.
66
66
  *
67
67
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/empty-state Docs}
68
68
  */
69
- export declare const EmptyState: import("..").HubSpotReactComponent<componentTypes.EmptyStateProps>;
69
+ export declare const EmptyState: import("./types/shared.ts").HubSpotReactComponent<componentTypes.EmptyStateProps>;
70
70
  /**
71
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.
72
72
  *
@@ -74,7 +74,7 @@ export declare const EmptyState: import("..").HubSpotReactComponent<componentTyp
74
74
  *
75
75
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/error-state Docs}
76
76
  */
77
- export declare const ErrorState: import("..").HubSpotReactComponent<componentTypes.ErrorStateProps>;
77
+ export declare const ErrorState: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ErrorStateProps>;
78
78
  /**
79
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.
80
80
  *
@@ -83,7 +83,7 @@ export declare const ErrorState: import("..").HubSpotReactComponent<componentTyp
83
83
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/form Docs}
84
84
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#form Design Pattern Examples}
85
85
  */
86
- export declare const Form: import("..").HubSpotReactComponent<componentTypes.FormProps>;
86
+ export declare const Form: import("./types/shared.ts").HubSpotReactComponent<componentTypes.FormProps>;
87
87
  /**
88
88
  * The `Heading` component renders large heading text. Use this component to introduce or differentiate sections of your component.
89
89
  *
@@ -91,7 +91,7 @@ export declare const Form: import("..").HubSpotReactComponent<componentTypes.For
91
91
  *
92
92
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/heading Docs}
93
93
  */
94
- export declare const Heading: import("..").HubSpotReactComponent<componentTypes.HeadingProps>;
94
+ export declare const Heading: import("./types/shared.ts").HubSpotReactComponent<componentTypes.HeadingProps>;
95
95
  /**
96
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.
97
97
  *
@@ -99,7 +99,7 @@ export declare const Heading: import("..").HubSpotReactComponent<componentTypes.
99
99
  *
100
100
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/image Docs}
101
101
  */
102
- export declare const Image: import("..").HubSpotReactComponent<componentTypes.ImageProps>;
102
+ export declare const Image: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ImageProps>;
103
103
  /**
104
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.
105
105
  *
@@ -107,7 +107,7 @@ export declare const Image: import("..").HubSpotReactComponent<componentTypes.Im
107
107
  *
108
108
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/input Docs}
109
109
  */
110
- export declare const Input: import("..").HubSpotReactComponent<componentTypes.InputProps>;
110
+ export declare const Input: import("./types/shared.ts").HubSpotReactComponent<componentTypes.InputProps>;
111
111
  /**
112
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.
113
113
  *
@@ -115,7 +115,7 @@ export declare const Input: import("..").HubSpotReactComponent<componentTypes.In
115
115
  *
116
116
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/link Docs}
117
117
  */
118
- export declare const Link: import("..").HubSpotReactComponent<componentTypes.LinkProps>;
118
+ export declare const Link: import("./types/shared.ts").HubSpotReactComponent<componentTypes.LinkProps>;
119
119
  /**
120
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.
121
121
  *
@@ -123,9 +123,9 @@ export declare const Link: import("..").HubSpotReactComponent<componentTypes.Lin
123
123
  *
124
124
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text-area Docs}
125
125
  */
126
- export declare const TextArea: import("..").HubSpotReactComponent<componentTypes.TextAreaProps>;
126
+ export declare const TextArea: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TextAreaProps>;
127
127
  /** @deprecated use TextArea instead. With a capital A.*/
128
- export declare const Textarea: import("..").HubSpotReactComponent<componentTypes.TextAreaProps>;
128
+ export declare const Textarea: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TextAreaProps>;
129
129
  /**
130
130
  * The `LoadingSpinner` component renders a visual indicator for when an extension is loading or processing data.
131
131
  *
@@ -133,7 +133,7 @@ export declare const Textarea: import("..").HubSpotReactComponent<componentTypes
133
133
  *
134
134
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-spinner Docs}
135
135
  */
136
- export declare const LoadingSpinner: import("..").HubSpotReactComponent<componentTypes.LoadingSpinnerProps>;
136
+ export declare const LoadingSpinner: import("./types/shared.ts").HubSpotReactComponent<componentTypes.LoadingSpinnerProps>;
137
137
  /**
138
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.
139
139
  *
@@ -141,7 +141,7 @@ export declare const LoadingSpinner: import("..").HubSpotReactComponent<componen
141
141
  *
142
142
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/progress-bar Docs}
143
143
  */
144
- export declare const ProgressBar: import("..").HubSpotReactComponent<componentTypes.ProgressBarProps>;
144
+ export declare const ProgressBar: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ProgressBarProps>;
145
145
  /**
146
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.
147
147
  *
@@ -149,7 +149,7 @@ export declare const ProgressBar: import("..").HubSpotReactComponent<componentTy
149
149
  *
150
150
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/select Docs}
151
151
  */
152
- export declare const Select: import("..").HubSpotReactComponent<componentTypes.SelectProps>;
152
+ export declare const Select: import("./types/shared.ts").HubSpotReactComponent<componentTypes.SelectProps>;
153
153
  /**
154
154
  * The `Tag` component renders a tag to label or categorize information or other components. Tags can be static or clickable for invoking functions.
155
155
  *
@@ -157,7 +157,7 @@ export declare const Select: import("..").HubSpotReactComponent<componentTypes.S
157
157
  *
158
158
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tag Docs}
159
159
  */
160
- export declare const Tag: import("..").HubSpotReactComponent<componentTypes.TagProps>;
160
+ export declare const Tag: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TagProps>;
161
161
  /**
162
162
  * The `Text` component renders text with formatting options.
163
163
  *
@@ -165,7 +165,7 @@ export declare const Tag: import("..").HubSpotReactComponent<componentTypes.TagP
165
165
  *
166
166
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/text Docs}
167
167
  */
168
- export declare const Text: import("..").HubSpotReactComponent<componentTypes.TextProps>;
168
+ export declare const Text: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TextProps>;
169
169
  /**
170
170
  * The `Tile` component renders a square tile that can contain other components. Use this component to create groups of related components.
171
171
  *
@@ -173,9 +173,9 @@ export declare const Text: import("..").HubSpotReactComponent<componentTypes.Tex
173
173
  *
174
174
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tile Docs}
175
175
  */
176
- export declare const Tile: import("..").HubSpotReactComponent<componentTypes.TileProps>;
176
+ export declare const Tile: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TileProps>;
177
177
  /** @deprecated use Flex instead. It will be removed in the next release. */
178
- export declare const Stack: import("..").HubSpotReactComponent<componentTypes.StackProps>;
178
+ export declare const Stack: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StackProps>;
179
179
  /**
180
180
  * The `ToggleGroup` component renders a list of selectable options, either in radio button or checkbox form.
181
181
  *
@@ -183,14 +183,14 @@ export declare const Stack: import("..").HubSpotReactComponent<componentTypes.St
183
183
  *
184
184
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle-group Docs}
185
185
  */
186
- export declare const ToggleGroup: import("..").HubSpotReactComponent<({
186
+ export declare const ToggleGroup: import("./types/shared.ts").HubSpotReactComponent<({
187
187
  toggleType: "checkboxList";
188
- onChange?: ((value: string[]) => void) | undefined;
189
- value?: string[] | undefined;
188
+ onChange?: (value: string[]) => void;
189
+ value?: string[];
190
190
  } & componentTypes.CommonGroupProps) | ({
191
191
  toggleType: "radioButtonList";
192
- onChange?: ((value: string) => void) | undefined;
193
- value?: string | undefined;
192
+ onChange?: (value: string) => void;
193
+ value?: string;
194
194
  } & componentTypes.CommonGroupProps)>;
195
195
  /**
196
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.
@@ -199,7 +199,7 @@ export declare const ToggleGroup: import("..").HubSpotReactComponent<({
199
199
  *
200
200
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
201
201
  */
202
- export declare const StatisticsItem: import("..").HubSpotReactComponent<componentTypes.StatisticsItemProps>;
202
+ export declare const StatisticsItem: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StatisticsItemProps>;
203
203
  /**
204
204
  * The `Statistics` component renders a visual spotlight of one or more data points. Includes the `StatisticsItem` and `StatisticsTrend` subcomponents.
205
205
  *
@@ -207,7 +207,7 @@ export declare const StatisticsItem: import("..").HubSpotReactComponent<componen
207
207
  *
208
208
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
209
209
  */
210
- export declare const Statistics: import("..").HubSpotReactComponent<componentTypes.StatisticsProps>;
210
+ export declare const Statistics: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StatisticsProps>;
211
211
  /**
212
212
  * The `StatisticsTrend` component renders a percentage trend value and direction alonside a `StatisticsItem` component. Use this component within the `StatisticsItem` component.
213
213
  *
@@ -215,7 +215,7 @@ export declare const Statistics: import("..").HubSpotReactComponent<componentTyp
215
215
  *
216
216
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/statistics Docs}
217
217
  */
218
- export declare const StatisticsTrend: import("..").HubSpotReactComponent<componentTypes.StatisticsTrendProps>;
218
+ export declare const StatisticsTrend: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StatisticsTrendProps>;
219
219
  /**
220
220
  * The `Table` component renders a table. To format the table, use the subcomponents `TableHead`, `TableRow`, `TableHeader`, `TableBody`, `TableCell`and `TableFooter`.
221
221
  *
@@ -224,7 +224,7 @@ export declare const StatisticsTrend: import("..").HubSpotReactComponent<compone
224
224
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
225
225
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#table Design Pattern Example}
226
226
  */
227
- export declare const Table: import("..").HubSpotReactComponent<componentTypes.TableProps>;
227
+ export declare const Table: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableProps>;
228
228
  /**
229
229
  * The `TableFooter` component renders a footer within a `Table` component. Use this component to display totals or other summary information.
230
230
  *
@@ -232,7 +232,7 @@ export declare const Table: import("..").HubSpotReactComponent<componentTypes.Ta
232
232
  *
233
233
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
234
234
  */
235
- export declare const TableFooter: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
235
+ export declare const TableFooter: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableElementProps>;
236
236
  /**
237
237
  * The `TableCell` component renders individual cells within the `TableBody` component.
238
238
  *
@@ -240,7 +240,7 @@ export declare const TableFooter: import("..").HubSpotReactComponent<componentTy
240
240
  *
241
241
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
242
242
  */
243
- export declare const TableCell: import("..").HubSpotReactComponent<componentTypes.TableCellProps>;
243
+ export declare const TableCell: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableCellProps>;
244
244
  /**
245
245
  * The `TableRow` component renders a row within the `TableBody` or `TableHead` component.
246
246
  *
@@ -248,7 +248,7 @@ export declare const TableCell: import("..").HubSpotReactComponent<componentType
248
248
  *
249
249
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
250
250
  */
251
- export declare const TableRow: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
251
+ export declare const TableRow: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableElementProps>;
252
252
  /**
253
253
  * The `TableBody` component renders the body (rows and cells) of a table within the `Table` component.
254
254
  *
@@ -256,7 +256,7 @@ export declare const TableRow: import("..").HubSpotReactComponent<componentTypes
256
256
  *
257
257
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
258
258
  */
259
- export declare const TableBody: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
259
+ export declare const TableBody: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableElementProps>;
260
260
  /**
261
261
  * The `TableHeader` component renders individual cells containing bolded column labels, within `TableHead`.
262
262
  *
@@ -264,7 +264,7 @@ export declare const TableBody: import("..").HubSpotReactComponent<componentType
264
264
  *
265
265
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
266
266
  */
267
- export declare const TableHeader: import("..").HubSpotReactComponent<componentTypes.TableHeaderProps>;
267
+ export declare const TableHeader: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableHeaderProps>;
268
268
  /**
269
269
  * The `TableHead` component renders the header section of the `Table` component, containing column labels.
270
270
  *
@@ -272,7 +272,7 @@ export declare const TableHeader: import("..").HubSpotReactComponent<componentTy
272
272
  *
273
273
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/table Docs}
274
274
  */
275
- export declare const TableHead: import("..").HubSpotReactComponent<componentTypes.TableElementProps>;
275
+ export declare const TableHead: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TableElementProps>;
276
276
  /**
277
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.
278
278
  *
@@ -280,7 +280,7 @@ export declare const TableHead: import("..").HubSpotReactComponent<componentType
280
280
  *
281
281
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/number-input Docs}
282
282
  */
283
- export declare const NumberInput: import("..").HubSpotReactComponent<componentTypes.NumberInputProps>;
283
+ export declare const NumberInput: import("./types/shared.ts").HubSpotReactComponent<componentTypes.NumberInputProps>;
284
284
  /**
285
285
  * The `Box` component renders an empty div container for fine tuning the spacing of components. Commonly used with the `Flex` component.
286
286
  *
@@ -289,7 +289,7 @@ export declare const NumberInput: import("..").HubSpotReactComponent<componentTy
289
289
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/box Docs}
290
290
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
291
291
  */
292
- export declare const Box: import("..").HubSpotReactComponent<componentTypes.BoxProps>;
292
+ export declare const Box: import("./types/shared.ts").HubSpotReactComponent<componentTypes.BoxProps>;
293
293
  /**
294
294
  * The `StepIndicator` component renders an indicator to show the current step of a multi-step process.
295
295
  *
@@ -297,7 +297,7 @@ export declare const Box: import("..").HubSpotReactComponent<componentTypes.BoxP
297
297
  *
298
298
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/step-indicator Docs}
299
299
  */
300
- export declare const StepIndicator: import("..").HubSpotReactComponent<componentTypes.StepIndicatorProps>;
300
+ export declare const StepIndicator: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StepIndicatorProps>;
301
301
  /**
302
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.
303
303
  *
@@ -305,7 +305,7 @@ export declare const StepIndicator: import("..").HubSpotReactComponent<component
305
305
  *
306
306
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/accordion Docs}
307
307
  */
308
- export declare const Accordion: import("..").HubSpotReactComponent<componentTypes.AccordionProps>;
308
+ export declare const Accordion: import("./types/shared.ts").HubSpotReactComponent<componentTypes.AccordionProps>;
309
309
  /**
310
310
  * The MultiSelect component renders a dropdown menu select field where a user can select multiple values. Commonly used within the `Form` component.
311
311
  *
@@ -313,7 +313,7 @@ export declare const Accordion: import("..").HubSpotReactComponent<componentType
313
313
  *
314
314
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/multi-select Docs}
315
315
  */
316
- export declare const MultiSelect: import("..").HubSpotReactComponent<componentTypes.MultiSelectProps>;
316
+ export declare const MultiSelect: import("./types/shared.ts").HubSpotReactComponent<componentTypes.MultiSelectProps>;
317
317
  /**
318
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.
319
319
  *
@@ -322,7 +322,7 @@ export declare const MultiSelect: import("..").HubSpotReactComponent<componentTy
322
322
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/flex Docs}
323
323
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/flex-and-box Flex and Box Example}
324
324
  */
325
- export declare const Flex: import("..").HubSpotReactComponent<componentTypes.FlexProps>;
325
+ export declare const Flex: import("./types/shared.ts").HubSpotReactComponent<componentTypes.FlexProps>;
326
326
  /**
327
327
  * The `DateInput` component renders an input field where a user can select a date. Commonly used within the `Form` component.
328
328
  *
@@ -330,7 +330,7 @@ export declare const Flex: import("..").HubSpotReactComponent<componentTypes.Fle
330
330
  *
331
331
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/date-input Docs}
332
332
  */
333
- export declare const DateInput: import("..").HubSpotReactComponent<componentTypes.DateInputProps>;
333
+ export declare const DateInput: import("./types/shared.ts").HubSpotReactComponent<componentTypes.DateInputProps>;
334
334
  /**
335
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.
336
336
  *
@@ -338,11 +338,11 @@ export declare const DateInput: import("..").HubSpotReactComponent<componentType
338
338
  *
339
339
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/checkbox Docs}
340
340
  */
341
- export declare const Checkbox: import("..").HubSpotReactComponent<componentTypes.CheckboxProps>;
341
+ export declare const Checkbox: import("./types/shared.ts").HubSpotReactComponent<componentTypes.CheckboxProps>;
342
342
  /**
343
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.
344
344
  */
345
- export declare const RadioButton: import("..").HubSpotReactComponent<componentTypes.RadioButtonProps>;
345
+ export declare const RadioButton: import("./types/shared.ts").HubSpotReactComponent<componentTypes.RadioButtonProps>;
346
346
  /**
347
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.
348
348
  *
@@ -350,7 +350,7 @@ export declare const RadioButton: import("..").HubSpotReactComponent<componentTy
350
350
  *
351
351
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/list Docs}
352
352
  */
353
- export declare const List: import("..").HubSpotReactComponent<componentTypes.ListProps>;
353
+ export declare const List: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ListProps>;
354
354
  /**
355
355
  * The `Toggle` component renders a boolean toggle switch that can be configured with sizing, label position, read-only, and more.
356
356
  *
@@ -358,7 +358,7 @@ export declare const List: import("..").HubSpotReactComponent<componentTypes.Lis
358
358
  *
359
359
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/toggle Docs}
360
360
  */
361
- export declare const Toggle: import("..").HubSpotReactComponent<componentTypes.ToggleProps>;
361
+ export declare const Toggle: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ToggleProps>;
362
362
  /**
363
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.
364
364
  *
@@ -366,7 +366,7 @@ export declare const Toggle: import("..").HubSpotReactComponent<componentTypes.T
366
366
  *
367
367
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
368
368
  */
369
- export declare const Dropdown: import("..").HubSpotReactComponent<import("..").UnknownComponentProps> & {
369
+ export declare const Dropdown: import("./types/shared.ts").HubSpotReactComponent<import("./types/shared.ts").UnknownComponentProps> & {
370
370
  /**
371
371
  * The `Dropdown.ButtonItem` component represents a single option within a `Dropdown` menu. Use this component as a child of the `Dropdown` component.
372
372
  *
@@ -374,7 +374,7 @@ export declare const Dropdown: import("..").HubSpotReactComponent<import("..").U
374
374
  *
375
375
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/dropdown Docs}
376
376
  */
377
- ButtonItem: import("..").HubSpotReactComponent<componentTypes.DropdownButtonItemProps>;
377
+ ButtonItem: import("./types/shared.ts").HubSpotReactComponent<componentTypes.DropdownButtonItemProps>;
378
378
  };
379
379
  /**
380
380
  * The Panel component renders a panel overlay on the right side of the page and contains other components.
@@ -385,7 +385,7 @@ export declare const Dropdown: import("..").HubSpotReactComponent<import("..").U
385
385
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
386
386
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#panel Design Pattern Examples}
387
387
  */
388
- export declare const Panel: import("..").HubSpotReactComponent<componentTypes.PanelProps>;
388
+ export declare const Panel: import("./types/shared.ts").HubSpotReactComponent<componentTypes.PanelProps>;
389
389
  /**
390
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`.
391
391
  *
@@ -394,7 +394,7 @@ export declare const Panel: import("..").HubSpotReactComponent<componentTypes.Pa
394
394
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
395
395
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
396
396
  */
397
- export declare const PanelFooter: import("..").HubSpotReactComponent<componentTypes.PanelFooterProps>;
397
+ export declare const PanelFooter: import("./types/shared.ts").HubSpotReactComponent<componentTypes.PanelFooterProps>;
398
398
  /**
399
399
  * The `PanelBody` component is a container that wraps the panel's content and makes it scrollable. Include only one `PanelBody` component per `Panel`.
400
400
  *
@@ -403,7 +403,7 @@ export declare const PanelFooter: import("..").HubSpotReactComponent<componentTy
403
403
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
404
404
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
405
405
  */
406
- export declare const PanelBody: import("..").HubSpotReactComponent<componentTypes.PanelBodyProps>;
406
+ export declare const PanelBody: import("./types/shared.ts").HubSpotReactComponent<componentTypes.PanelBodyProps>;
407
407
  /**
408
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`.
409
409
  *
@@ -412,7 +412,7 @@ export declare const PanelBody: import("..").HubSpotReactComponent<componentType
412
412
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/panel-footer Docs}
413
413
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
414
414
  */
415
- export declare const PanelSection: import("..").HubSpotReactComponent<componentTypes.PanelSectionProps>;
415
+ export declare const PanelSection: import("./types/shared.ts").HubSpotReactComponent<componentTypes.PanelSectionProps>;
416
416
  /**
417
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.
418
418
  *
@@ -420,7 +420,7 @@ export declare const PanelSection: import("..").HubSpotReactComponent<componentT
420
420
  *
421
421
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/stepper-input Docs}
422
422
  */
423
- export declare const StepperInput: import("..").HubSpotReactComponent<componentTypes.StepperInputProps>;
423
+ export declare const StepperInput: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StepperInputProps>;
424
424
  /**
425
425
  * The Modal component renders a pop-up overlay that can contain other components.
426
426
  *
@@ -430,7 +430,7 @@ export declare const StepperInput: import("..").HubSpotReactComponent<componentT
430
430
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
431
431
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/design-patterns#modal Design Pattern Examples}
432
432
  */
433
- export declare const Modal: import("..").HubSpotReactComponent<componentTypes.ModalProps>;
433
+ export declare const Modal: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ModalProps>;
434
434
  /**
435
435
  * The `ModalBody` component contains the main content of the modal. One `ModalBody` is required per `Modal`.
436
436
  *
@@ -439,7 +439,7 @@ export declare const Modal: import("..").HubSpotReactComponent<componentTypes.Mo
439
439
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
440
440
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
441
441
  */
442
- export declare const ModalBody: import("..").HubSpotReactComponent<componentTypes.ModalBodyProps>;
442
+ export declare const ModalBody: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ModalBodyProps>;
443
443
  /**
444
444
  * The `ModalFooter` component is an optional component to format the footer section of the modal. Use one `ModalFooter` per `Modal`.
445
445
  *
@@ -448,7 +448,7 @@ export declare const ModalBody: import("..").HubSpotReactComponent<componentType
448
448
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/modal Docs}
449
449
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/overlay-example Overlay Example}
450
450
  */
451
- export declare const ModalFooter: import("..").HubSpotReactComponent<componentTypes.ModalFooterProps>;
451
+ export declare const ModalFooter: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ModalFooterProps>;
452
452
  /**
453
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.
454
454
  *
@@ -456,7 +456,7 @@ export declare const ModalFooter: import("..").HubSpotReactComponent<componentTy
456
456
  *
457
457
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/icon Docs}
458
458
  */
459
- export declare const Icon: import("..").HubSpotReactComponent<componentTypes.IconProps>;
459
+ export declare const Icon: import("./types/shared.ts").HubSpotReactComponent<componentTypes.IconProps>;
460
460
  /**
461
461
  * The `StatusTag` component renders a visual indicator to display the current status of an item. Status tags can be static or clickable.
462
462
  *
@@ -465,7 +465,7 @@ export declare const Icon: import("..").HubSpotReactComponent<componentTypes.Ico
465
465
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag Docs}
466
466
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/status-tag#variants Variants}
467
467
  */
468
- export declare const StatusTag: import("..").HubSpotReactComponent<componentTypes.StatusTagProps>;
468
+ export declare const StatusTag: import("./types/shared.ts").HubSpotReactComponent<componentTypes.StatusTagProps>;
469
469
  /**
470
470
  * The `LoadingButton` component renders a button with loading state options.
471
471
  *
@@ -473,7 +473,7 @@ export declare const StatusTag: import("..").HubSpotReactComponent<componentType
473
473
  *
474
474
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/loading-button Docs}
475
475
  */
476
- export declare const LoadingButton: import("..").HubSpotReactComponent<componentTypes.LoadingButtonProps>;
476
+ export declare const LoadingButton: import("./types/shared.ts").HubSpotReactComponent<componentTypes.LoadingButtonProps>;
477
477
  /**
478
478
  * The `BarChart` component renders a bar chart for visualizing data. This type of chart is best suited for comparing categorical data.
479
479
  *
@@ -483,7 +483,7 @@ export declare const LoadingButton: import("..").HubSpotReactComponent<component
483
483
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
484
484
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
485
485
  */
486
- export declare const BarChart: import("..").HubSpotReactComponent<componentTypes.ChartProps>;
486
+ export declare const BarChart: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ChartProps>;
487
487
  /**
488
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.
489
489
  *
@@ -493,7 +493,7 @@ export declare const BarChart: import("..").HubSpotReactComponent<componentTypes
493
493
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/charts Charts Docs}
494
494
  * - {@link https://github.com/HubSpot/ui-extensions-examples/tree/main/charts-example Charts Example}
495
495
  */
496
- export declare const LineChart: import("..").HubSpotReactComponent<componentTypes.ChartProps>;
496
+ export declare const LineChart: import("./types/shared.ts").HubSpotReactComponent<componentTypes.ChartProps>;
497
497
  /**
498
498
  * `Tabs` allow you to group related content in a compact space, allowing users to switch between views without leaving the page.
499
499
  * @example
@@ -508,7 +508,7 @@ export declare const LineChart: import("..").HubSpotReactComponent<componentType
508
508
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
509
509
  * - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
510
510
  */
511
- export declare const Tabs: import("..").HubSpotReactComponent<componentTypes.TabsProps>;
511
+ export declare const Tabs: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TabsProps>;
512
512
  /**
513
513
  * Each `Tab` represents a single tab (or "view") within the parent `Tabs` component.
514
514
  * @example
@@ -523,7 +523,7 @@ export declare const Tabs: import("..").HubSpotReactComponent<componentTypes.Tab
523
523
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tabs Documentation}
524
524
  * - {@link https://github.com/hubspotdev/uie-tabbed-product-carousel Tabs Example}
525
525
  */
526
- export declare const Tab: import("..").HubSpotReactComponent<componentTypes.TabProps>;
526
+ export declare const Tab: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TabProps>;
527
527
  /**
528
528
  * The `Illustration` component renders an illustration.
529
529
  *
@@ -531,14 +531,14 @@ export declare const Tab: import("..").HubSpotReactComponent<componentTypes.TabP
531
531
  *
532
532
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/illustration Illustration Docs}
533
533
  */
534
- export declare const Illustration: import("..").HubSpotReactComponent<componentTypes.IllustrationProps>;
534
+ export declare const Illustration: import("./types/shared.ts").HubSpotReactComponent<componentTypes.IllustrationProps>;
535
535
  /**
536
536
  * The `Tooltip` component renders a tooltip for a component.
537
537
  *
538
538
  * **Links:**
539
539
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/tooltip Documentation}
540
540
  */
541
- export declare const Tooltip: import("..").HubSpotReactComponent<componentTypes.TooltipProps>;
541
+ export declare const Tooltip: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TooltipProps>;
542
542
  /**
543
543
  * The `SearchInput` component renders a search input field.
544
544
  *
@@ -546,7 +546,7 @@ export declare const Tooltip: import("..").HubSpotReactComponent<componentTypes.
546
546
  *
547
547
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/search-input SearchInput Docs}
548
548
  */
549
- export declare const SearchInput: import("..").HubSpotReactComponent<componentTypes.SearchInputProps>;
549
+ export declare const SearchInput: import("./types/shared.ts").HubSpotReactComponent<componentTypes.SearchInputProps>;
550
550
  /**
551
551
  * The `TimeInput` component renders an input field where a user can select a time. Commonly used within the `Form` component.
552
552
  *
@@ -554,7 +554,7 @@ export declare const SearchInput: import("..").HubSpotReactComponent<componentTy
554
554
  *
555
555
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/time-input Docs}
556
556
  */
557
- export declare const TimeInput: import("..").HubSpotReactComponent<componentTypes.TimeInputProps>;
557
+ export declare const TimeInput: import("./types/shared.ts").HubSpotReactComponent<componentTypes.TimeInputProps>;
558
558
  /**
559
559
  * The `CurrencyInput` component renders a currency input field with proper formatting,
560
560
  * currency symbols, and locale-specific display patterns. Commonly used within the `Form` component.
@@ -563,14 +563,14 @@ export declare const TimeInput: import("..").HubSpotReactComponent<componentType
563
563
  *
564
564
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/currency-input Docs}
565
565
  */
566
- export declare const CurrencyInput: import("..").HubSpotReactComponent<componentTypes.CurrencyInputProps>;
566
+ export declare const CurrencyInput: import("./types/shared.ts").HubSpotReactComponent<componentTypes.CurrencyInputProps>;
567
567
  /**
568
568
  * The `Inline` component spreads aligns its children horizontally (along the x-axis).
569
569
  *
570
570
  * **Links:**
571
571
  *
572
572
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/inline Docs}
573
- */ export declare const Inline: import("..").HubSpotReactComponent<componentTypes.InlineProps>;
573
+ */ export declare const Inline: import("./types/shared.ts").HubSpotReactComponent<componentTypes.InlineProps>;
574
574
  /**
575
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.
576
576
  *
@@ -578,63 +578,63 @@ export declare const CurrencyInput: import("..").HubSpotReactComponent<component
578
578
  *
579
579
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/simple-grid Docs}
580
580
  */
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>;
581
+ export declare const AutoGrid: import("./types/shared.ts").HubSpotReactComponent<componentTypes.AutoGridProps>;
582
+ export declare const CrmPropertyList: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmPropertyListProps>;
583
+ export declare const CrmAssociationTable: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmAssociationTableProps>;
584
+ export declare const CrmDataHighlight: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmDataHighlightProps>;
585
+ export declare const CrmReport: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmReportProps>;
586
+ export declare const CrmAssociationPivot: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmAssociationPivotProps>;
587
+ export declare const CrmAssociationPropertyList: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmAssociationPropertyListProps>;
588
+ export declare const CrmAssociationStageTracker: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmAssociationStageTrackerProps>;
589
+ export declare const CrmSimpleDeadline: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmSimpleDeadlineProps>;
590
+ export declare const CrmStageTracker: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmStageTrackerProps>;
591
+ export declare const CrmStatistics: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmStatisticsProps>;
592
+ export declare const CrmActionButton: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmActionButtonProps>;
593
+ export declare const CrmActionLink: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmActionLinkProps>;
594
+ export declare const CrmCardActions: import("./types/shared.ts").HubSpotReactComponent<crmTypes.CrmCardActionsProps>;
595
595
  /**
596
596
  * The `HeaderActions` component renders a container for action buttons in the app home header. It accepts `PrimaryHeaderActionButton` and `SecondaryHeaderActionButton` as children.
597
597
  *
598
598
  */
599
- export declare const HeaderActions: import("..").HubSpotReactComponent<componentTypes.HeaderActionsProps>;
599
+ export declare const HeaderActions: import("./types/shared.ts").HubSpotReactComponent<componentTypes.HeaderActionsProps>;
600
600
  /**
601
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
602
  *
603
603
  */
604
- export declare const PrimaryHeaderActionButton: import("..").HubSpotReactComponent<componentTypes.HeaderActionButtonProps>;
604
+ export declare const PrimaryHeaderActionButton: import("./types/shared.ts").HubSpotReactComponent<componentTypes.HeaderActionButtonProps>;
605
605
  /**
606
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
607
  *
608
608
  */
609
- export declare const SecondaryHeaderActionButton: import("..").HubSpotReactComponent<componentTypes.HeaderActionButtonProps>;
609
+ export declare const SecondaryHeaderActionButton: import("./types/shared.ts").HubSpotReactComponent<componentTypes.HeaderActionButtonProps>;
610
610
  /**
611
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
612
  */
613
- export declare const Iframe: import("..").HubSpotReactComponent<componentTypes.IframeProps>;
613
+ export declare const Iframe: import("./types/shared.ts").HubSpotReactComponent<componentTypes.IframeProps>;
614
614
  /**
615
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
616
  */
617
- export declare const MediaObject: import("..").HubSpotReactComponent<experimentalTypes.MediaObjectProps>;
617
+ export declare const MediaObject: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.MediaObjectProps>;
618
618
  /**
619
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
620
  */
621
- export declare const Stack2: import("..").HubSpotReactComponent<experimentalTypes.Stack2Props>;
621
+ export declare const Stack2: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.Stack2Props>;
622
622
  /**
623
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
624
  */
625
- export declare const Center: import("..").HubSpotReactComponent<experimentalTypes.CenterProps>;
625
+ export declare const Center: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.CenterProps>;
626
626
  /**
627
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
628
  */
629
- export declare const Grid: import("..").HubSpotReactComponent<experimentalTypes.GridProps>;
629
+ export declare const Grid: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.GridProps>;
630
630
  /**
631
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
632
  */
633
- export declare const GridItem: import("..").HubSpotReactComponent<experimentalTypes.GridItemProps>;
633
+ export declare const GridItem: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.GridItemProps>;
634
634
  /**
635
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
636
  */
637
- export declare const SettingsView: import("..").HubSpotReactComponent<experimentalTypes.SettingsViewProps>;
637
+ export declare const SettingsView: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.SettingsViewProps>;
638
638
  /**
639
639
  * The `ExpandableText` component renders a text that can be expanded or collapsed based on a maximum height.
640
640
  *
@@ -644,7 +644,7 @@ export declare const SettingsView: import("..").HubSpotReactComponent<experiment
644
644
  *
645
645
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/expandable-text ExpandableText Docs}
646
646
  */
647
- export declare const ExpandableText: import("..").HubSpotReactComponent<experimentalTypes.ExpandableTextProps>;
647
+ export declare const ExpandableText: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.ExpandableTextProps>;
648
648
  /**
649
649
  * The `Popover` component renders a popover overlay that can contain other components.
650
650
  *
@@ -654,8 +654,8 @@ export declare const ExpandableText: import("..").HubSpotReactComponent<experime
654
654
  *
655
655
  * - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/popover Popover Docs}
656
656
  */
657
- export declare const Popover: import("..").HubSpotReactComponent<experimentalTypes.PopoverProps>;
657
+ export declare const Popover: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.PopoverProps>;
658
658
  /**
659
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
660
  */
661
- export declare const FileInput: import("..").HubSpotReactComponent<experimentalTypes.FileInputProps>;
661
+ export declare const FileInput: import("./types/shared.ts").HubSpotReactComponent<experimentalTypes.FileInputProps>;