import { DomNode } from '@co-hooks/dom-node';
import { INodeType } from '@chief-editor/base';
import React, { CSSProperties } from 'react';
import { IRuntimeDispatcherProps } from '../types';
export declare const RuntimeDispatcher: React.MemoExoticComponent<(props: IRuntimeDispatcherProps) => JSX.Element>;
export interface IRuntimeListDispatcherProps {
    node: DomNode<INodeType>;
    style?: CSSProperties;
    className?: string;
}
