import * as React from "react"; type Props = { className?: string | null | undefined; translationIndex: number; paragraphIndex?: number; children?: React.ReactNode; inline?: boolean; }; declare class QuestionParagraph extends React.Component { render(): React.ReactNode; } export default QuestionParagraph;