import * as React from 'react'; import '../styles.scss'; import { Theme } from '../Models/Theme/Theme'; import { TextContent } from '../Text/TextContent'; export type CongratulationsProps = { theme?: Theme; onDone: () => void; children?: JSX.Element; textContent: TextContent; }; declare const Congratulations: React.FC; export default Congratulations;