vroom-react
Version:
Vroom React UI
11 lines (10 loc) • 492 B
TypeScript
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;