import { ServiceManager } from '../ServiceManager'; export declare const patch: (name: string, method: Function, factory?: boolean) => (target: ServiceType) => void; export declare const applyPatches: (sm: ServiceManager, target: ServiceType) => any; declare type ServiceType = { [property: string]: any; }; export {};