/** * The ONE resolution of the Fjall API base URL: `FJALL_API_URL` when set to a * non-empty value (CI shells and env-files legitimately export `X=""`, which * must fall through), otherwise production. The CLI's `DEFAULT_BASE_URL` and * the MCP server's mirror each captured this shape independently — a coupled * value at two occurrences whose drift would silently point the two consumers * at different control planes, and whose fingerprints * (`credentialFingerprint(apiKey, baseUrl)`) would then disagree about the * same credential. */ export declare const FJALL_PRODUCTION_API_URL = "https://fjall.io"; /** Resolved per call — consumers choose their own capture semantics. */ export declare function resolveApiBaseUrl(): string;