import { Context } from '@deepseek-ai/cordis'; /** Cordis plugin name; referenced by the runtime patch row. */ declare const name = "lark-notify"; /** Requires the dsh tool registry before registering. */ declare const inject: string[]; interface Config { /** Localhost callback URL of the running bridge process. */ endpoint?: string; /** Shared token authorizing the callback. */ token?: string; } /** * dsh tool that lets the agent push Feishu/Lark messages (optionally with * user mentions) to the current chat or another scope known to the bridge. * The bridge runs a localhost-only callback server; this plugin is the * runtime side of that channel. */ declare function apply(ctx: Context, config?: Config): void; export { type Config, apply, inject, name };