survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
14 lines (13 loc) • 430 B
TypeScript
import * as React from "react";
import { Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
import { MenuButton } from "survey-creator-core";
export declare class TabButtonComponent extends SurveyElementBase<{
model: MenuButton;
}, any> {
constructor(props: {
model: MenuButton;
});
protected getStateElement(): Base;
protected renderElement(): React.JSX.Element | null;
}