/** * Built-in Desktop plugin. * * Wraps the existing DesktopAdapter (Compose desktop companion via JSON-RPC). * Desktop has no runtime permissions and no sync screenshot — capabilities * reflect that. */ import type { PluginContext, PluginManifest, SourcePlugin } from "@claude-in-mobile/plugin-api"; import { DesktopAdapter } from "../../adapters/desktop-adapter.js"; export declare const DESKTOP_PLUGIN_MANIFEST: PluginManifest; export declare class DesktopPlugin implements SourcePlugin { readonly manifest: PluginManifest; readonly adapter: DesktopAdapter; constructor(adapter?: DesktopAdapter); init(_ctx: PluginContext): void; } export declare function createDesktopPlugin(): SourcePlugin; //# sourceMappingURL=index.d.ts.map