import type { MCPToolRequest } from "./types"; /** * Singleton object holding environment information */ declare const envStore: { APP: string; MODULE: string; ACCESS_KEY: string; SECRET_KEY: string; BEARER_TOKEN: string; BEARER_PROVIDER: string; CSRF: boolean; TOOL: MCPToolRequest | null; }; export declare const Env: { /** * Get the APP ID */ readonly APP: string; /** * Module for the backend */ readonly MODULE: string; /** * Access key to authenticate with. Should only be set in development mode */ readonly ACCESS_KEY: string; /** * Secret key to authenticate with. Should only be set in development mode */ readonly SECRET_KEY: string; /** * Bearer token passed from embed host */ readonly BEARER_TOKEN: string; /** * Bearer provider passed from embed host */ readonly BEARER_PROVIDER: string; /** * CSRF token for the current session */ readonly CSRF: boolean; /** * Current tool information */ readonly TOOL: MCPToolRequest; /** * Update the environment variables * @param updated - updated variables */ update(updated: Partial): void; }; export {};