import { Service as PlatformService } from '../Core/index'; export interface Type extends Function { new (...args: any[]): T; } declare type Primitive = string | number | boolean; export declare type ServiceOptions = { [property: string]: Primitive; }; export declare function Options(options?: ServiceOptions): (Service: Type) => any; export {};