/** Copyright (c) 2018 Uber Technologies, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { Context } from 'fusion-core'; type ContextOptions = { headers?: { [key: string]: string; }; body?: unknown; method?: string; ctxCallback?: (ctx: Context) => any; }; export declare function createRequestContext(url: string, options?: ContextOptions): Context; export declare function createRenderContext(url: string, options?: ContextOptions): Context; export {}; //# sourceMappingURL=mock-context.d.ts.map