import * as react from 'react';
import { Context } from 'react';

declare const createContext: <ValueType>() => react.Context<ValueType>;

declare const useContext: <ValueType>(context: Context<ValueType>) => ValueType;

export { createContext, useContext };
