import type { PluginContext } from "rollup"; import type { ResolvedConfig, ViteDevServer } from "vite"; /** The manifest contains names only; values are read by the server at request time. */ export declare function createHandleTanstackStartBootstrapEnv(params: { resolvedConfig: ResolvedConfig; }): { resolveId: (id: string) => "\0virtual:oidc-spa/tanstack-start-public-env" | null; load: (id: string, context: Pick & { environment?: { name?: string; }; }) => Promise; configureServer: (server: ViteDevServer) => void; };