/** * Built-in Android plugin. * * Wraps the existing AndroidAdapter without modifying its behavior. The * adapter remains the implementation; the plugin layer adds the kernel * contract (manifest, lifecycle, capabilities) on top. * * Phase 2 migration: AndroidAdapter is kept intact and accessed through * `plugin.adapter`. DeviceManager continues to route through the adapter * directly for backward compatibility until Phase 5 turns it into a facade * over the plugin registry. */ import type { PluginContext, PluginManifest, SourcePlugin } from "@claude-in-mobile/plugin-api"; import { AndroidAdapter } from "../../adapters/android-adapter.js"; export declare const ANDROID_PLUGIN_MANIFEST: PluginManifest; export declare class AndroidPlugin implements SourcePlugin { readonly manifest: PluginManifest; readonly adapter: AndroidAdapter; constructor(adapter?: AndroidAdapter); init(_ctx: PluginContext): void; } export declare function createAndroidPlugin(): SourcePlugin; //# sourceMappingURL=index.d.ts.map