import React, { JSXElementConstructor, FC } from "react"; import { QuestionProps, QuestionType } from "./types"; export declare function getChildrenOfType

(...allowedTypes: Array>): (children: React.ReactNode) => React.ReactElement>[] | null | undefined; export declare const getQuestionFromType: (type: QuestionType) => FC;