import { StackClientApp } from "../lib/stack-app/apps/interfaces/client-app.js"; //#region src/dev-tool/index.d.ts /** * Mounts the Stack Auth dev tool on the page. * * - Only renders on localhost (or when overridden via console) * - Lazily loads the dev tool UI via dynamic import * - Returns a cleanup function to unmount * * Console commands (also work in production): * StackDevTool.enable() — force-show the dev tool * StackDevTool.disable() — force-hide the dev tool * StackDevTool.reset() — revert to default (localhost-only) */ declare function mountDevTool(app: StackClientApp): () => void; //#endregion export { mountDevTool }; //# sourceMappingURL=index.d.ts.map