treege 3.0.0-beta.59 → 3.0.0-beta.60

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,15 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { TreegeRendererConfig } from '../types/renderer';
3
- /**
4
- * Hook to access the global Treege configuration
5
- * Returns undefined if used outside of TreegeConfigProvider
6
- */
7
- export declare const useTreegeConfig: () => TreegeRendererConfig | undefined;
8
- export type TreegeConfigProviderProps = TreegeRendererConfig & {
9
- children: ReactNode;
10
- };
11
- /**
12
- * Provider for global Treege configuration
13
- * Wrap your app with this provider to set default options for all TreegeRenderer instances
14
- */
15
- export declare const TreegeConfigProvider: ({ children, ...config }: TreegeConfigProviderProps) => import("react/jsx-runtime").JSX.Element;