UNPKG

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.

13 lines (12 loc) 389 B
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 {};