import { interfaces } from 'inversify'; import { Scope } from '../types/scope'; declare type ServiceOptions = { provide?: interfaces.ServiceIdentifier; scope?: Scope; }; export declare const Service: (options?: ServiceOptions) => ClassDecorator; export {};