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 { private containerRef; get model(): SidebarModel; constructor(props: ISidebarComponentProps); protected getStateElement(): Base; componentDidMount(): void; componentWillUnmount(): void; canRender(): boolean; renderElement(): React.JSX.Element; } export default SidebarComponent;