/**
 * Service is global singleton instance, which doesn't take any inputs.
 */
export declare function Service(options?: {
    tags?: string[];
    meta?: object;
}): <T extends new (...args: any[]) => {}>(constructor: T) => void;
