import * as React from "react"; import { Base } from "survey-core"; import { SurveyElementBase } from "survey-react-ui"; import { SurveyCreatorModel } from "survey-creator-core"; export interface ISurveyCreatorToolboxProps { model: SurveyCreatorModel; } export declare class AdaptiveToolbox extends SurveyElementBase { private rootRef; constructor(props: ISurveyCreatorToolboxProps); componentDidUpdate(prevProps: any, prevState: any): void; componentDidMount(): void; componentWillUnmount(): void; get creator(): SurveyCreatorModel; get toolbox(): import("survey-creator-core").QuestionToolbox; protected getStateElement(): Base; renderItems(items: Array, isCompact?: boolean): Array; renderCategories(): any[]; renderSearch(): React.JSX.Element; render(): React.JSX.Element; }