import { COMPONENT_COMMAND_TYPES } from '../features/component/config'; import { DTO_COMMAND_TYPES } from '../features/dto/config'; import { IMPORT_COMMAND_TYPES } from '../features/import/config'; import { SERVICE_COMMAND_TYPES } from '../features/service/config'; import { CommandHandler } from '../ports/command-bus.port'; export declare type COMMAND_TYPES = COMPONENT_COMMAND_TYPES | DTO_COMMAND_TYPES | SERVICE_COMMAND_TYPES | IMPORT_COMMAND_TYPES; export declare const commandHandlerMap: Map;