import { RunnableConfig } from '@langchain/core/runnables';
/**
 * Creates new runnable config.
 * configurable.thread_id is an important part of that because it helps to distinguish different chat sessions.
 * We normally do not have multiple sessions in the terminal, but I had bad stuff happening in tests
 * and in another prototype project where I was importing Gaunt Sloth.
 */
export declare function getNewRunnableConfig(): RunnableConfig;
