import * as z from "zod"; import { Security } from "../models/security.js"; import { ClosedEnum } from "../types/enums.js"; import { HTTPClient } from "./http.js"; import { Logger } from "./logger.js"; import { RetryConfig } from "./retries.js"; /** * Contains the list of servers available to the SDK */ export declare const ServerList: readonly ["https://{region}.cloudinary.com", "https://{host}"]; /** * Regional endpoint selection */ export declare const ServerRegion: { readonly Api: "api"; readonly ApiEu: "api-eu"; readonly ApiAp: "api-ap"; }; /** * Regional endpoint selection */ export type ServerRegion = ClosedEnum; export declare const ServerRegion$zodSchema: z.ZodEnum<{ api: "api"; "api-eu": "api-eu"; "api-ap": "api-ap"; }>; export type SDKOptions = { /** * The security details required to authenticate the SDK */ security?: Security | (() => Promise) | undefined; /** * Allows setting the cloud_name parameter for all supported operations */ cloud_name?: string | undefined; httpClient?: HTTPClient; /** * Allows overriding the default server used by the SDK */ serverIdx?: number | undefined; /** * Sets the region variable for url substitution */ region?: ServerRegion | undefined; /** * Sets the host variable for url substitution */ host?: string | undefined; /** * Allows overriding the default server URL used by the SDK */ serverURL?: string | undefined; /** * Allows overriding the default user agent used by the SDK */ userAgent?: string | undefined; /** * Allows overriding the default retry config used by the SDK */ retryConfig?: RetryConfig; timeoutMs?: number; debugLogger?: Logger | undefined; }; export declare function serverURLFromOptions(options: SDKOptions): URL | null; export declare const SDK_METADATA: { readonly language: "typescript"; readonly openapiDocVersion: "0.5.1"; readonly sdkVersion: "0.9.3"; readonly genVersion: "2.885.1"; readonly userAgent: "speakeasy-sdk/mcp-typescript 0.9.3 2.885.1 0.5.1 @cloudinary/asset-management-mcp"; }; //# sourceMappingURL=config.d.ts.map