import { type OpenClawPluginApi } from './types.js'; /** * OpenClaw plugin entry point. * Called by the OpenClaw host to register vault signing tools. */ export default function (api: OpenClawPluginApi): void; export { type OpenClawPluginConfig } from './types.js'; export { buildContext } from './context.js'; export { registerTools } from './tools.js';