import { FoundationElement } from '@ni/fast-foundation';
declare global {
    interface HTMLElementTagNameMap {
        'spright-chat-conversation': ChatConversation;
    }
}
/**
 * A Spright component for displaying a series of chat messages
 */
export declare class ChatConversation extends FoundationElement {
    appearance: undefined;
    /** @internal */
    inputEmpty: boolean;
    /** @internal */
    readonly slottedInputElements?: HTMLElement[];
    slottedInputElementsChanged(_prev: HTMLElement[] | undefined, next: HTMLElement[] | undefined): void;
}
export declare const chatConversationTag = "spright-chat-conversation";
