import * as React from 'react';
export declare const useContext: <S>(context: React.Context<S | undefined>) => S;
export declare const useStore: <S, D>(state?: React.Context<S | undefined> | undefined, dispatch?: React.Context<D | undefined> | undefined) => [S, D];