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.
11 lines (10 loc) • 481 B
TypeScript
import * as React from "react";
import { Base, ItemValue, QuestionSliderModel } from "survey-core";
import { SurveyElementBase } from "../../reactquestion_element";
export declare class SliderLabelItem extends SurveyElementBase<any, any> {
protected getStateElement(): Base;
protected get item(): ItemValue;
protected get question(): QuestionSliderModel;
componentDidUpdate(prevProps: any, prevState: any): void;
protected renderElement(): React.JSX.Element;
}