import * as components from "../models/components/index.js"; import { HTTPClient } from "./http.js"; import { Logger } from "./logger.js"; import { RetryConfig } from "./retries.js"; /** * UAT for US Region */ export declare const ServerUatUs = "uat-us"; /** * Prod for US Region */ export declare const ServerProdUs = "prod-us"; /** * UAT for EU Region */ export declare const ServerUatEu = "uat-eu"; /** * Prod for EU Region */ export declare const ServerProdEu = "prod-eu"; /** * Contains the list of servers available to the SDK */ export declare const ServerList: { readonly "uat-us": "https://platform.uat.proveapis.com"; readonly "prod-us": "https://platform.proveapis.com"; readonly "uat-eu": "https://platform.uat.eu.proveapis.com"; readonly "prod-eu": "https://platform.eu.proveapis.com"; }; export type SDKOptions = { /** * The security details required to authenticate the SDK */ security?: components.Security | (() => Promise) | undefined; httpClient?: HTTPClient; /** * Allows overriding the default server used by the SDK */ server?: keyof typeof ServerList | 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; }; export declare function serverURLFromOptions(options: SDKOptions): URL | null; export declare const SDK_METADATA: { readonly language: "typescript"; readonly openapiDocVersion: "1.0.0"; readonly sdkVersion: "0.14.12"; readonly genVersion: "2.656.3"; readonly userAgent: "speakeasy-sdk/typescript 0.14.12 2.656.3 1.0.0 @prove-identity/prove-api"; }; //# sourceMappingURL=config.d.ts.map