export declare namespace Decorator { enum Type { ConstructorParameter = "CTOR_PARAM", MethodParameter = "METHOD_PARAM", Method = "METHOD", Property = "PROP", Class = "CLASS" } function getType(args: IArguments): Type; }