import { MatchFn, MatchResult } from "../value-matchers"; import { ExpectationValue, JSONValue } from "../Values"; import { ContextMatcher } from "./ContextMatcher"; export declare function globals(name: string, value: JSONValue): GlobalsMatcher; export declare function globals(name: string, fn: MatchFn): GlobalsMatcher; export declare class GlobalsMatcher implements ContextMatcher { private _matchers; constructor(name: string, matcher: MatchFn | JSONValue); match(ctx: ExpectationValue): MatchResult; }