import type { Clear, Get, GetWithDefaultValue, Set } from './types'; type UseContext = (() => [get: Get, set: Set, clear: Clear]) & ((defaultValue: Type) => [get: GetWithDefaultValue, set: Set, clear: Clear]); /** * Creates functions for `get`, `set` and `clear` some typed value in test context. */ export declare const useContext: UseContext; export {};