import type { ModuleOption } from '../types'; /** * Module decorator to define a module in the Elysia framework. * @param module - The module options to be associated with the target class. */ export declare function Module(module: ModuleOption): ClassDecorator;