import { ActionContext, ComponentManifest, ComponentRegistry, ConfigVarResultCollection, DebugContext, FlowInvoker } from "../types"; import { ActionContext as ServerActionContext } from "."; export declare function createCNIContext = Record, TFlows extends string[] = string[]>(context: ActionContext, componentRegistry: ComponentRegistry): ActionContext; export declare function createDebugContext(context: ServerActionContext): DebugContext; export declare function logDebugResults(context: ActionContext): void; export declare const createInvokeFlow: >(context: ActionContext, options?: { isCNI?: boolean; }) => FlowInvoker;