import { Base } from "survey-core";
import { SidebarModel } from "./side-bar-model";
export declare class SidebarPageModel extends Base {
    id: string;
    sidePanel: SidebarModel;
    locTitleName: string;
    visible: boolean;
    componentData: any;
    componentName: string;
    activateCallback: () => void;
    deactivateCallback: () => void;
    private captionValue;
    constructor(id: string, sidePanel: SidebarModel, componentName?: string, componentData?: any);
    get caption(): string;
    set caption(val: string);
}
