survey-react-ui
Version:
A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.
14 lines (13 loc) • 655 B
TypeScript
import * as React from "react";
import { SurveyQuestionUncontrolledElement } from "./reactquestion_element";
import { Base, QuestionCustomModel, QuestionCompositeModel } from "survey-core";
export declare class SurveyQuestionCustom extends SurveyQuestionUncontrolledElement<QuestionCustomModel> {
constructor(props: any);
protected getStateElements(): Array<Base>;
protected renderElement(): React.JSX.Element;
}
export declare class SurveyQuestionComposite extends SurveyQuestionUncontrolledElement<QuestionCompositeModel> {
constructor(props: any);
protected canRender(): boolean;
protected renderElement(): React.JSX.Element;
}