import * as React from "react"; import { AiCopilotAssistApiReference, AiCopilotAssistApiTone } from "../../../core/FlexDataClient"; import { AIMessageVariants } from "../AIChatLog"; export declare const Message: ({ message, variant, author, imageURL, references, scrollerRef, id, interactionSid, channelSid, regenerateResponse, regenerateFlagEnabled, precedingUserMessage }: { message: string; variant: AIMessageVariants; author: string; imageURL?: string; references?: AiCopilotAssistApiReference[]; scrollerRef?: React.MutableRefObject; id: string; interactionSid: string; channelSid: string; regenerateResponse: (tone: AiCopilotAssistApiTone) => void; regenerateFlagEnabled: boolean; precedingUserMessage?: string; }) => JSX.Element;