import { Message } from '../types.js';
/**
 * Takes an array of context strings and formats them into a single Message object with the 'user' role.
 *
 * @param contexts An array of context strings.
 * @returns A Message object containing the concatenated context strings.
 */
export declare function createContextFromStrings(contexts?: string[]): Message | null;
