import { h } from 'preact';
import { SurveyAppearance, SurveyQuestionDescriptionContentType } from '../../../posthog-surveys-types';
export declare function ConfirmationMessage({ header, description, contentType, forceDisableHtml, appearance, onClose, }: {
    header: string;
    description: string;
    forceDisableHtml: boolean;
    contentType?: SurveyQuestionDescriptionContentType;
    appearance: SurveyAppearance;
    onClose: () => void;
}): h.JSX.Element;
