// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Add a static function called getInjectionIdentifierName, that * returns the name, that was defined by InjectionIdentifier. * Used for ServiceInjection. * * @param constructor the class that should get the method added * @param name unique name to refer to this class during injection */ export declare const InjectionIdentifier: (name: string) => (constructor: any) => void;