import { Scope } from "@iyio/common";
import { Conversation, ConversationOptions } from "./Conversation";
/**
 * Creates a new Conversation configured using values defined in the given scope or the root scope.
 */
export declare const createConversationFromScope: (scope?: Scope, defaultOptions?: ConversationOptions, overridingOptions?: ConversationOptions) => Conversation;
