UNPKG

349 BTypeScriptView Raw
1import * as React from 'react';
2import type { ITangleContext } from './types';
3export declare const TangleContext: React.Context<ITangleContext<any>>;
4interface ITangleProviderProps<S = any> {
5 initial?: S;
6 children: React.ReactNode;
7}
8export declare function TangleProvider<S>(props: ITangleProviderProps<S>): JSX.Element | null;
9export {};