import type { AuthzContext } from '../context/authz-context'; export declare class ScopedRepository { private readonly delegate; constructor(delegate: TDelegate); /** Current request context (throws if missing — enforcement is never accidental). */ protected ctx(): AuthzContext; /** The underlying (extension-scoped) Prisma delegate. */ get scoped(): TDelegate; } //# sourceMappingURL=scoped-repository.d.ts.map