/** * Enable the multi-user team capability (#267 Track A tail). * * Pass to `createNoydb({ teamStrategy: withTeam() })` to make `db.grant` / * `db.revoke` / `db.rotate` live. The keyring grant/revoke/rotate engines * are statically imported HERE — this module is reachable only through the * `@noy-db/hub/team` subpath (and the root barrel's tree-shakeable * re-export), so a single-user floor bundle never carries them. The facade * (`TeamFacade.runGrant` / `runRevoke` / `runRotate`) owns the policy-gate + * keyring plumbing and receives the engine as an argument. */ import type { TeamStrategy } from './strategy.js'; export declare function withTeam(): TeamStrategy;