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.
13 lines (12 loc) • 389 B
TypeScript
import * as React from "react";
import { SurveyElementBase } from "../../reactquestion_element";
interface IRatingItemProps {
item: any;
}
export declare class RatingDropdownItem extends SurveyElementBase<IRatingItemProps, any> {
get item(): any;
getStateElement(): any;
render(): React.JSX.Element | null;
renderDescription(item: any): React.JSX.Element;
}
export {};