import type { CliDeps } from "../cli/deps.types.js"; import type { KlawConfig } from "../config/types.klaw.js"; import type { GatewayRequestContext } from "./server-methods/types.js"; type LocalGatewayRequestContextParams = { deps: CliDeps; getRuntimeConfig: () => KlawConfig; }; type LocalGatewayScopeParams = LocalGatewayRequestContextParams; export declare function createLocalGatewayRequestContext(params: LocalGatewayRequestContextParams): GatewayRequestContext; export declare function withLocalGatewayRequestScope(params: LocalGatewayScopeParams, run: () => T): T; export {};