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.
11 lines (10 loc) • 384 B
TypeScript
import { SurveyModel } from "survey-core";
import { SurveyElementBase } from "./reactquestion_element";
export declare class SurveyNavigationBase extends SurveyElementBase<any, any> {
constructor(props: any);
protected get survey(): SurveyModel;
protected get css(): any;
private updateStateFunction;
componentDidMount(): void;
componentWillUnmount(): void;
}