import React from 'react'; import { TutorialPanelProps } from '../../interfaces'; interface CongratulationScreenProps { children: React.ReactNode; onFeedbackClick?: () => void; i18nStrings: TutorialPanelProps['i18nStrings']; } export declare function CongratulationScreen({ children, onFeedbackClick, i18nStrings }: CongratulationScreenProps): JSX.Element; export {};