survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
14 lines (13 loc) • 476 B
TypeScript
import * as React from "react";
import { Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
import { SidebarHeaderModel } from "survey-creator-core";
interface ISideBarHeaderProps {
model: SidebarHeaderModel;
}
export declare class SideBarDefaultHeader extends SurveyElementBase<ISideBarHeaderProps, any> {
get model(): SidebarHeaderModel;
protected getStateElement(): Base | null;
renderElement(): React.JSX.Element;
}
export {};