type NodeRed = {
    nodes: NodeRedNodes;
};
type NodeRedWire = {
    [index: number]: string;
};
type NodeRedWires = {
    [index: number]: NodeRedWire;
};
type NodeRedProperties = {
    id: string;
    type: string;
    name: string;
    classesURL: string;
    iou: string;
    minScore: string;
    wires: NodeRedWires;
};
type NodeRedNodes = {
    createNode(node: any, props: NodeRedProperties): void;
    registerType(type: string, ctor: any): void;
};
declare const _default: (RED: NodeRed) => void;
export = _default;
