import type { BackendStatus, InstallResult, ToggleResult, UninstallResult } from "./types.ts"; /** * Install the skaile integration for Claude Code. * * Two modes: * - **mcp** (default) — write `.claude/mcp.json` pointing at `skaile mcp-server`. * - **full** (`opts.full`) — generate the `.claude/plugins/skaile/` directory * (MCP + lifecycle hooks) and register it in `.claude/settings.json`. */ export declare function install(projectDir: string, opts?: { full?: boolean; }): Promise; export declare function uninstall(projectDir: string): Promise; export declare function enable(projectDir: string): Promise; export declare function disable(projectDir: string): Promise; export declare function status(projectDir: string): Promise; //# sourceMappingURL=claude-code.d.ts.map