import type { FeatureModule } from "../compose.js"; /** * Tauri feature. * * Minimal-scaffold cutover (epic zudolab/zudo-doc#2651, Wave 6 #2660): the * `src-tauri/**` Rust shell is a genuine, unconditional file copy (no * package equivalent — kept exactly as before). * * The FindInPageInit island (Cmd/Ctrl+F find bar, #2052) is now * package-owned (`@takazudo/zudo-doc`, #2689) instead of a template file * copy — `zfb-config-gen.ts`'s `buildDesiredConfig()` sets * `findInPage: true` whenever this feature is selected (#2690), which mounts * the package's `FindInPageInit` island via `zudoDocPreset()`. There is no * separate `findInPage` feature module or CLI flag; it rides this one. The * island self-gates on `window.__TAURI_INTERNALS__`, so it's a safe no-op in * a plain browser build even though `findInPage: true` is unconditionally * emitted for every tauri-feature scaffold. */ export declare const tauriFeature: FeatureModule;