survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
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;
}