import { Token } from '../token.class'; import { ServiceOptions } from '../interfaces/service-options.interface'; /** * Marks class as a service that can be injected using Container. */ export declare function Service(): Function; export declare function Service(name: string): Function; export declare function Service(token: Token): Function; export declare function Service(options?: ServiceOptions): Function;