/** Decorator "bind" allows to bind prototype method context to class instance */
export declare function bind<Fn extends Function>(target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<Fn>): TypedPropertyDescriptor<Fn>;
