survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
19 lines (18 loc) • 640 B
TypeScript
import * as React from "react";
import { SidebarModel } from "survey-creator-core";
import { Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
interface ISidebarComponentProps {
model: SidebarModel;
}
export declare class SidebarComponent extends SurveyElementBase<ISidebarComponentProps, any> {
private containerRef;
get model(): SidebarModel;
constructor(props: ISidebarComponentProps);
protected getStateElement(): Base;
componentDidMount(): void;
componentWillUnmount(): void;
canRender(): boolean;
renderElement(): React.JSX.Element;
}
export default SidebarComponent;