declare type MethodDecorator = (target: any, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor | void; declare const Subscribe: (queue: string) => MethodDecorator; export default Subscribe;