import { Exception } from '@dolittle/rudiments';
import { Constructor } from '@dolittle/types';
/**.
 * Exception that gets thrown when the {@link IContainer} could not create an instance of the projection
 *
 * @export
 * @class CouldNotCreateInstanceOfProjection
 * @extends {Exception}
 */
export declare class CouldNotCreateInstanceOfProjection extends Exception {
    /**
     * Initializes an instance of {@link CouldNotCreateInstanceOfProjection}.
     * @param {Constructor<any>} type - The projection type to be instantiated.
     * @param {Exception} inner - The inner exception.
     */
    constructor(type: Constructor<any>, inner: Exception);
}
//# sourceMappingURL=CouldNotCreateInstanceOfProjection.d.ts.map