import { ContextNode, PropsMap, SelectionState } from '../shared/types.d'; export declare const ContextsPreviewAPI: () => { getContextNodes: (settings: import("../shared/types").WrapperSettings) => ContextNode[]; getSelectionState: () => SelectionState; getPropsMap: (contextNodes: ContextNode[], selectionState: SelectionState) => PropsMap; getRendererFrom: (h: import("../shared/types").AnyFunctionReturns) => (contextNodes: ContextNode[], propsMap: PropsMap, getStoryVNode: import("../shared/types").AnyFunctionReturns) => T; updateReactiveSystem: (propsMap: PropsMap) => PropsMap; };