import { AppCtx } from '../application/application'; import { HttpConfig } from '@byted-apaas/server-common-node/http/config'; import { HttpOptions } from '@byted-apaas/server-common-node/http/request'; /** * 获取带有 server-sdk 信息的 HttpOptions * @param ctx 上下文 * @param httpConfig HTTP 配置 * @returns HttpOptions */ export declare function getOptionsWithSDKInfo(ctx: any, httpConfig: HttpConfig): HttpOptions; export declare function getDebugExtraInfo(): Record; export declare function getTriggerCtx(): any; export declare function transMapToFlowVariable(params: Record): { api_name: string; value: any; }[]; export declare function transFlowVariableToMap(variables: { api_name: string; value: any; }[]): Record; export declare function getTenantInfo(appCtx: AppCtx): Promise; export declare function getNamespaceForOpenAndFaaSSDK(): Promise;