/** * Decorator to mark a constructor parameter for dependency injection. * @param target - The target class. * @param propertyKey - The name of the constructor (always `'constructor'`). * @param parameterIndex - The index of the parameter to inject. */ export declare function Inject(target: any, propertyKey: string | symbol | undefined, parameterIndex: number): void;