import { Plugin } from 'vite'; type WhopOptions = { /** * Resolve `@tanstack/*-devtools` to a stub, so the floating devtools panel * never renders. * * Set by `whop apps init` on the projects Whop builds, where the page is * watched by the person the site is being built for and a developer panel * belongs to nobody. Delete it — or set it to false — to get them back. * * Deliberately a flag in the project rather than something inferred from the * environment: whoever wonders where the devtools went finds the answer in the * config they are already reading, and turning them on is one word. */ disableTanstackDevtools?: boolean; }; declare function whop(options?: WhopOptions): Plugin[]; export { type WhopOptions, whop as default, whop };