import type { ComponentProps } from 'react';
import { MessageTemplateSectionPreview } from './MessageTemplateSectionPreview';
export declare function MessageTemplatePreview({ isReceived, templateName, templateVariables, headerText, footerText, imgUrl, bodyText, sentDate, readDate, deliveredDate, reaction, }: {
    isReceived: boolean;
    templateName: string;
    templateVariables?: {
        key: string;
        value: string;
    }[];
    headerText?: string | null;
    footerText?: string | null;
    imgUrl?: string;
    bodyText: string;
    searchString?: string;
    onSearchRefs?: ComponentProps<typeof MessageTemplateSectionPreview>['onSearchRefs'];
    focusedRefIndex?: number;
    focusedKey?: string | null;
    sentDate?: string | null;
    readDate?: string | null;
    deliveredDate?: string | null;
    reaction?: string | null;
}): import("react/jsx-runtime").JSX.Element;
