export namespace NODE_COLORS {
    export namespace TRIGGER {
        export const fill: string;
        export const border: string;
    }
    export namespace LOGIC {
        const fill_1: string;
        export { fill_1 as fill };
        const border_1: string;
        export { border_1 as border };
    }
    export namespace DATA {
        const fill_2: string;
        export { fill_2 as fill };
        const border_2: string;
        export { border_2 as border };
    }
    export namespace ACTION {
        const fill_3: string;
        export { fill_3 as fill };
        const border_3: string;
        export { border_3 as border };
    }
}
export namespace OUT_PORT_TYPE {
    export const SINGLE: string;
    export const STATIC: string;
    export const DYNAMIC: string;
    export const BROADCAST: string;
}
export namespace DESCRIPTIONS {
    export const script: string;
    export const template: string;
    export const json: string;
    export const cron: string;
}
