import * as React from "react"; import { Base, Action, ActionContainer } from "survey-core"; import { SurveyElementBase } from "../../reactquestion_element"; export * from "./action-bar-item-dropdown"; export * from "./action-bar-separator"; interface IActionBarProps { model: ActionContainer; handleClick?: boolean; } export declare class SurveyActionBar extends SurveyElementBase { private rootRef; constructor(props: IActionBarProps); private get handleClick(); get model(): ActionContainer; componentDidMount(): void; componentWillUnmount(): void; componentDidUpdate(prevProps: IActionBarProps, prevState: any): void; protected getStateElement(): Base; renderElement(): any; renderItems(): React.JSX.Element[]; }