import { RuntimeException } from './runtime';
import { Module, InjectorDependencyContext } from '../../core';
export declare class UnknownDependenciesException extends RuntimeException {
    readonly type: string | symbol;
    readonly context: InjectorDependencyContext;
    readonly metadata?: {
        id: string;
    };
    readonly moduleRef: {
        id: string;
    } | undefined;
    constructor(type: string | symbol, context: InjectorDependencyContext, moduleRef?: Module, metadata?: {
        id: string;
    });
}
//# sourceMappingURL=unknown-dependencies.d.ts.map