/** Minimal shape of the OpenClaw plugin API surface we need. */ export interface SessionContextSeedHookPluginApi { on(hookName: string, handler: (...args: unknown[]) => unknown | Promise, opts?: { priority?: number; }): void; } export interface RegisterSessionContextSeedHookOptions { api: SessionContextSeedHookPluginApi; } export declare function registerSessionContextSeedHook(options: RegisterSessionContextSeedHookOptions): void; //# sourceMappingURL=session-context-seed-hook.d.ts.map