/** Package-owned scoped-dispatch invariants. @module @deepseek-ai/dsh-scope/invariant */ import type { Context } from '@deepseek-ai/cordis'; /** Cordis companion plugin name. */ export declare const name = "scope-invariant"; /** Services required before the companion can register. */ export declare const inject: string[]; /** * Register the scope invariant companion. * @param ctx - Cordis context carrying the invariant service. * @returns the installed registration's disposer after setup succeeds. */ export declare const apply: (ctx: Context) => Promise<() => void>; //# sourceMappingURL=invariant.d.ts.map