//#region src/lib/env.d.ts /** * Centralized environment-variable reads for the SDK. * * Keep each key explicit and reference `process.env.KEY` directly so bundlers * like Next.js can inline values at build time. */ declare const envVars: { readonly NEXT_PUBLIC_STACK_PORT_PREFIX: string | undefined; readonly NEXT_PUBLIC_STACK_PROJECT_ID: string | undefined; readonly STACK_PROJECT_ID: string | undefined; readonly NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY: string | undefined; readonly STACK_PUBLISHABLE_CLIENT_KEY: string | undefined; readonly STACK_SECRET_SERVER_KEY: string | undefined; readonly STACK_SUPER_SECRET_ADMIN_KEY: string | undefined; readonly NEXT_PUBLIC_STACK_EXTRA_REQUEST_HEADERS: string | undefined; readonly STACK_EXTRA_REQUEST_HEADERS: string | undefined; readonly NEXT_PUBLIC_BROWSER_STACK_API_URL: string | undefined; readonly NEXT_PUBLIC_STACK_API_URL_BROWSER: string | undefined; readonly STACK_API_URL_BROWSER: string | undefined; readonly NEXT_PUBLIC_SERVER_STACK_API_URL: string | undefined; readonly NEXT_PUBLIC_STACK_API_URL_SERVER: string | undefined; readonly STACK_API_URL_SERVER: string | undefined; readonly NEXT_PUBLIC_STACK_API_URL: string | undefined; readonly STACK_API_URL: string | undefined; readonly NEXT_PUBLIC_STACK_URL: string | undefined; readonly NEXT_PUBLIC_STACK_HOSTED_HANDLER_DOMAIN_SUFFIX: string | undefined; readonly NEXT_PUBLIC_STACK_HOSTED_HANDLER_URL_TEMPLATE: string | undefined; readonly NEXT_PUBLIC_STACK_STRIPE_PUBLISHABLE_KEY: string | undefined; readonly NEXT_PUBLIC_STACK_BOT_CHALLENGE_SITE_KEY: string | undefined; readonly NEXT_PUBLIC_STACK_BOT_CHALLENGE_INVISIBLE_SITE_KEY: string | undefined; readonly NODE_ENV: string | undefined; readonly NEXT_PUBLIC_STACK_IS_LOCAL_EMULATOR: string | undefined; }; //#endregion export { envVars }; //# sourceMappingURL=env.d.ts.map