import { Subject } from "../persistence/Subject";
import { TypeORMError } from "./TypeORMError";
/**
 * Thrown when same object is scheduled for remove and updation at the same time.
 */
export declare class SubjectRemovedAndUpdatedError extends TypeORMError {
    constructor(subject: Subject);
}
