/// <reference types="react" />
import { DawnNode, IDawnBrickConfig, IDawnPathGlobal, Model } from '@flow-editor/dawn';
export interface IBrickListDispatcherOptions {
    scope: DawnNode<IDawnPathGlobal>;
    model: Model;
    bricks: IDawnBrickConfig[];
}
export declare function DawnBrickListDispatcher({ scope, model, bricks }: IBrickListDispatcherOptions): JSX.Element;
