@process.co/ui 0.0.18 → 0.0.20

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.
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+
3
+ interface SlotElementsProps {
4
+ slotId: string;
5
+ }
6
+ declare const SlotElements: (props: SlotElementsProps) => React.JSX.Element;
7
+
8
+ interface ExportManagerProps {
9
+ slotId: string;
10
+ }
11
+ declare const ExportManager: (props: ExportManagerProps) => React.JSX.Element;
12
+
13
+ declare const index_ExportManager: typeof ExportManager;
14
+ type index_ExportManagerProps = ExportManagerProps;
15
+ declare const index_SlotElements: typeof SlotElements;
16
+ type index_SlotElementsProps = SlotElementsProps;
17
+ declare namespace index {
18
+ export { index_ExportManager as ExportManager, type index_ExportManagerProps as ExportManagerProps, index_SlotElements as SlotElements, type index_SlotElementsProps as SlotElementsProps };
19
+ }
20
+
21
+ export { ExportManager as E, SlotElements as S, type SlotElementsProps as a, type ExportManagerProps as b, index as i };