import type { RowWithID } from "../../types";
import { EntAccessError } from "./EntAccessError";
/**
 * Error: thrown when an Ent cannot be updated or deleted due to privacy reasons.
 */
export declare class EntNotUpdatableError extends EntAccessError {
    readonly vc: string;
    readonly row: RowWithID;
    constructor(entName: string, vc: string, row: RowWithID, cause?: unknown);
}
//# sourceMappingURL=EntNotUpdatableError.d.ts.map