import { CallbackManager } from "../callbacks/manager.js"; import { RunnableConfig } from "./types.js"; //#region src/runnables/config.d.ts declare function getCallbackManagerForConfig(config?: RunnableConfig): Promise; declare function mergeConfigs(...configs: (CallOptions | RunnableConfig | undefined | null)[]): Partial; /** * Ensure that a passed config is an object with all required keys present. */ declare function ensureConfig(config?: CallOptions): CallOptions; /** * Helper function that patches runnable configs with updated properties. */ declare function patchConfig(config?: Partial, { callbacks, maxConcurrency, recursionLimit, runName, configurable, runId }?: RunnableConfig): Partial; declare function pickRunnableConfigKeys>(config?: CallOptions): Partial | undefined; //#endregion export { ensureConfig, getCallbackManagerForConfig, mergeConfigs, patchConfig, pickRunnableConfigKeys }; //# sourceMappingURL=config.d.ts.map