react-resizable-panels 4.0.1 → 4.0.3

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.
@@ -26,7 +26,7 @@ export declare function Group({ children, className, defaultLayout, disableCurso
26
26
  *
27
27
  * ℹ️ The `useGroupRef` and `useGroupCallbackRef` hooks are exported for convenience use in TypeScript projects.
28
28
  */
29
- declare interface GroupImperativeHandle {
29
+ export declare interface GroupImperativeHandle {
30
30
  /**
31
31
  * Get the Group's current layout as a map of Panel id to percentage (0..100)
32
32
  *
@@ -150,7 +150,7 @@ export declare function Panel({ children, className, collapsedSize, collapsible,
150
150
  *
151
151
  * ℹ️ The `usePanelRef` and `usePanelCallbackRef` hooks are exported for convenience use in TypeScript projects.
152
152
  */
153
- declare interface PanelImperativeHandle {
153
+ export declare interface PanelImperativeHandle {
154
154
  /**
155
155
  * Collapse the Panel to it's `collapsedSize`.
156
156
  *
@@ -308,7 +308,7 @@ export declare function useDefaultLayout({ groupId, storage }: {
308
308
  groupId: string;
309
309
  storage: LayoutStorage;
310
310
  }): {
311
- defaultLayout: any;
311
+ defaultLayout: Layout | undefined;
312
312
  onLayoutChange: (layout: Layout) => void | undefined;
313
313
  };
314
314