declare interface DeprecatedOptions { deprecatedOn: string; willRemoveOn: string; customWarning?: string; } export declare function Deprecated(opt: DeprecatedOptions): (_target: any, _propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; export {};