@mx-cartographer/insights-ui 1.3.1-alpha.j2 → 1.3.1-alpha.j3

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.
@@ -1,4 +1,5 @@
1
- interface BottomSheetBaseProps {
1
+ import { default as React } from 'react';
2
+ interface BottomSheetProps {
2
3
  allowScroll?: boolean;
3
4
  children: any;
4
5
  height?: number | string;
@@ -8,5 +9,5 @@ interface BottomSheetBaseProps {
8
9
  showBackground?: boolean;
9
10
  width?: number | string;
10
11
  }
11
- export declare const BottomSheet: ({ isDarkMode, ...props }: import('../insights/withTheme').WithThemeProps & BottomSheetBaseProps) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const BottomSheet: React.FC<BottomSheetProps>;
12
13
  export {};