import { MetaManager } from '@bleed-believer/meta'; import type { CommandRoutingDecorator, CommandRoutingOptions, CommandRoutingMeta } from './interfaces/index.js'; export declare const COMMAND_ROUTING: MetaManager; /** * A decorator de transform classes to a Command Routing class. * @param options The options to define the routings of the class. */ export declare function CommandRouting(options: CommandRoutingOptions): CommandRoutingDecorator;