import { StackClientApp } from "../lib/hexclave-app/index.js"; //#region src/dev-tool/index.d.ts /** * Mounts the Hexclave dev tool on the page. * * Visibility is determined by the `devTool` option: * - `true`: always show * - `false`: never show (caller gates this — mountDevTool won't be called) * - `"auto"` / `undefined`: show based on NODE_ENV or localhost/file: heuristics * * Console commands (also work in production): * HexclaveDevTool.enable() — force-show the dev tool * HexclaveDevTool.disable() — force-hide the dev tool * HexclaveDevTool.reset() — revert to auto behavior */ declare function mountDevTool(app: StackClientApp, devToolOption?: boolean | "auto"): () => void; //#endregion export { mountDevTool }; //# sourceMappingURL=index.d.ts.map