import { interfaces } from "inversify"; declare function getDecorators(container: interfaces.Container, doCache?: boolean): { lazyInject: (serviceIdentifier: string | symbol | interfaces.Newable | interfaces.Abstract) => (proto: any, key: string) => void; lazyInjectNamed: (serviceIdentifier: string | symbol | interfaces.Newable | interfaces.Abstract, named: string) => (proto: any, key: string) => void; lazyInjectTagged: (serviceIdentifier: string | symbol | interfaces.Newable | interfaces.Abstract, key: string, value: any) => (proto: any, propertyName: string) => void; lazyMultiInject: (serviceIdentifier: string | symbol | interfaces.Newable | interfaces.Abstract) => (proto: any, key: string) => void; }; export default getDecorators;