import type { ControllerRoutingDecorator, ControllerRoutingOptions, ControllerRoutingMeta } from './interfaces/index.js'; import { MetaManager } from '@bleed-believer/meta'; export declare const CONTROLLER_ROUTING: MetaManager; /** * Converts a class into a `ControllerRouting` class. The `ControllerRouting` class can store a great * amount of `Controller` classes, or also another `ControllerRouting` classes. * @param options An object with the options to define the descendant of the current `ControllerRouting` class. */ export declare function ControllerRouting(options: ControllerRoutingOptions): ControllerRoutingDecorator;