/** * What `@tanstack/*-devtools` resolves to under `whop({ disableTanstackDevtools: * true })`. * * The TanStack scaffold mounts `` in `__root.tsx`, which puts a * floating panel trigger over every page. On a developer's own machine that is * the point; on a site being watched by the person it is being built for, the * control belongs to nobody. * * Aliased rather than edited out of `__root.tsx`: the app's components stay * exactly as their author wrote them, and there is no JSX rewriting to get wrong. * What the project does carry is the one flag that asks for this, so the missing * panel is explained by the config rather than by the environment. */ declare function nothing(): null; declare const TanStackDevtools: typeof nothing; declare const TanStackRouterDevtools: typeof nothing; declare const TanStackRouterDevtoolsPanel: typeof nothing; declare const ReactQueryDevtools: typeof nothing; declare const ReactQueryDevtoolsPanel: typeof nothing; export { ReactQueryDevtools, ReactQueryDevtoolsPanel, TanStackDevtools, TanStackRouterDevtools, TanStackRouterDevtoolsPanel, nothing as default };