import { ViewStyle } from 'react-native'; import { SurveyAppearanceTheme } from '../surveys-utils'; import { SurveyQuestionDescriptionContentType } from '@posthog/core'; export declare function ConfirmationMessage({ appearance, header, description, contentType, onClose, styleOverrides, isModal, }: { appearance: SurveyAppearanceTheme; header: string; description: string; contentType?: SurveyQuestionDescriptionContentType; onClose: () => void; styleOverrides?: ViewStyle; isModal: boolean; }): JSX.Element;