import { Plugin } from 'vite'; declare function getClientScript(options: SpecterOptions): string; interface SpecterOptions { shortcuts?: { activate?: string; }; /** * Enable the "Send to Claude" button in the Specs panel. Batches every Spec to a * local Specter MCP bridge (see `mcp-bridge/`) that Claude Code / Kiro pull from. * `true` uses the default bridge at http://127.0.0.1:8787; pass `{ url }` to override. */ claudeBridge?: boolean | { url?: string; }; } declare function specter(options?: SpecterOptions): Plugin; export { type SpecterOptions, getClientScript, specter };