// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved import {HttpContext} from "./context"; export declare class HttpConsumer { constructor(callable:(...args: any[])=> Promise, params?: any); callable:(...args: any[])=> Promise; params?: any; run(context: HttpContext, ...args: any[]); }