/// <reference types="react" />
import { DawnNode, IDawnBrickConfig, IDawnPathGlobal, Model } from '@flow-editor/dawn';
export interface IBrickDispatcherOptions {
    scope: DawnNode<IDawnPathGlobal>;
    model: Model;
    config: IDawnBrickConfig;
}
export declare function DawnBrickDispatcher({ config, model, scope }: IBrickDispatcherOptions): JSX.Element | null;
