import { ReactNode } from 'react'; import type { SdkConfig } from '../domain/types'; import { StackScope } from '../application/StackScope'; interface StackScopeContextValue { instance: StackScope | null; isInitialized: boolean; } export interface StackScopeProviderProps { children: ReactNode; config?: Partial; autoInit?: boolean; } export declare function StackScopeProvider({ children, config, autoInit }: StackScopeProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useStackScopeContext(): StackScopeContextValue; export {}; //# sourceMappingURL=Provider.d.ts.map