UNPKG

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.

10 lines (9 loc) 443 B
import * as React from "react"; import { QuestionTagboxModel } from "survey-core"; import { SurveyQuestionDropdownBase } from "./dropdown-base"; export declare class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<QuestionTagboxModel> { constructor(props: any); protected renderItem(key: string, item: any): React.JSX.Element; protected renderInput(): React.JSX.Element; protected renderElement(): React.JSX.Element; }