import { Constructable } from '@tachybase/utils'; /** * Thrown when DI cannot inject value into property decorated by @Inject decorator. */ export declare class CannotInjectValueError extends Error { private target; private propertyName; name: string; get message(): string; constructor(target: Constructable, propertyName: string); }