@chamn/engine
Version:
10 lines (9 loc) • 422 B
TypeScript
import { CNode, CRootNode } from '@chamn/model';
import { CPluginCtx } from '../../core/pluginManager';
import { CRightPanelItem } from '../RightPanel/view';
export type AdvancePanelProps = {
node: CNode | CRootNode | null;
pluginCtx: CPluginCtx;
};
export declare const AdvancePanel: (props: AdvancePanelProps) => import("react/jsx-runtime").JSX.Element;
export declare const AdvancePanelConfig: CRightPanelItem;