/**
 * Full URL string (https://abc.com/path), without trailing slash
 */
type TUrl = string;
type LANGUAGES = "en" | "fr" | "de" | "es" | "it" | "pl" | "ja";
/**
 * Basic info needed to call the Beam API.
 * Endpoints may also require parameters such as chainId, storeId, and order/cart details.
 */
type BeamBaseAPIConfig = {
    apiKey: string;
    baseUrl?: TUrl;
};

export type { BeamBaseAPIConfig as B, LANGUAGES as L, TUrl as T };
