import type { Context, ContextWithDefault } from '../types'; declare function useContext(Context: ContextWithDefault): T; declare function useContext(Context: Context): T | undefined; export default useContext;