survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
13 lines (12 loc) • 409 B
TypeScript
import * as React from "react";
import { Action } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
export declare class AddQuestionButtonComponent extends SurveyElementBase<{
item: Action;
buttonClass?: string;
renderPopup?: boolean;
}, any> {
get model(): any;
protected renderTypeSelector(): React.JSX.Element;
protected renderElement(): React.JSX.Element;
}