import { EntAccessError } from "./EntAccessError";
/**
 * Error: non-existing ID in the database (failed loadX() call), or non-existing
 * Ent (failed loadByX() call). Notice that `where` data is intentionally NOT
 * considered as private and may be delivered to the client.
 */
export declare class EntNotFoundError extends EntAccessError {
    readonly where: Record<string, unknown>;
    constructor(entName: string, where: Record<string, unknown>, cause?: unknown);
}
//# sourceMappingURL=EntNotFoundError.d.ts.map