import { MetaManager } from '@bleed-believer/meta'; import type { CommandDecorator, CommandMeta, CommandOptions } from './interfaces/index.js'; export declare const COMMAND: MetaManager; /** * Transforms a class into a `Command` class. Requires implement the `Executable` interface. * @param options The options required to configure the class. */ export declare function Command(options: CommandOptions): CommandDecorator;