import { BrickkenEnvironment, ResolvedConfig } from './types'; export declare const SANDBOX_BASE_URL = "https://api.sandbox.brickken.com"; export declare const PRODUCTION_BASE_URL = "https://api.brickken.com"; export declare const FORGE_BASE_URL = "https://d4aqanatl1.execute-api.eu-west-1.amazonaws.com/forge"; export declare function getBaseUrlForEnvironment(env: BrickkenEnvironment): string; export declare function normalizeChainId(chainId?: string): string | undefined; export declare function resolveConfigFromEnv(): ResolvedConfig;