/**
 * @module teams-ai
 */
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
import { TemplateSection } from './TemplateSection';
/**
 * A user message.
 */
export declare class UserMessage extends TemplateSection {
    /**
     * Creates a new 'UserMessage' instance.
     * @param {string} template Template to use for this section.
     * @param {number} tokens Optional. Sizing strategy for this section. Defaults to `auto`.
     * @param {string} userPrefix Optional. Prefix to use for user messages when rendering as text. Defaults to `user: `.
     */
    constructor(template: string, tokens?: number, userPrefix?: string);
}
//# sourceMappingURL=UserMessage.d.ts.map