import React, { ReactNode } from 'react';
import { SdkStateGlobalBase } from '../../types/SdkStateGlobalBase';
export interface SdkStateGlobalContextValue extends SdkStateGlobalBase {
}
export declare const SdkStateGlobalContext: React.Context<SdkStateGlobalBase | undefined>;
export interface SdkStateGlobalContextProps {
    initialProps: SdkStateGlobalBase;
    children?: ReactNode;
}
export declare function SdkStateGlobalContextProvider(props: SdkStateGlobalContextProps): JSX.Element;
