import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; import { LocationClientConfig } from "./LocationClient"; /** * @internal */ export declare const getRuntimeConfig: (config: LocationClientConfig) => { runtime: string; defaultsMode: import("@smithy/types").Provider; bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise); defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise; maxAttempts: number | import("@smithy/types").Provider; region: string | import("@smithy/types").Provider; requestHandler: import("@smithy/protocol-http").HttpHandler | RequestHandler; retryMode: string | import("@smithy/types").Provider; sha256: import("@smithy/types").HashConstructor; streamCollector: import("@smithy/types").StreamCollector; useDualstackEndpoint: (boolean | import("@smithy/types").Provider) & (boolean | import("@smithy/types").Provider); useFipsEndpoint: (boolean | import("@smithy/types").Provider) & (boolean | import("@smithy/types").Provider); apiVersion: string; cacheMiddleware?: boolean | undefined; urlParser: import("@smithy/types").UrlParser; base64Decoder: import("@smithy/types").Decoder; base64Encoder: (_input: Uint8Array | string) => string; utf8Decoder: import("@smithy/types").Decoder; utf8Encoder: (input: Uint8Array | string) => string; disableHostPrefix: boolean; serviceId: string; profile?: string; logger: import("@smithy/types").Logger; extensions: import("./runtimeExtensions").RuntimeExtension[]; customUserAgent?: string | import("@smithy/types").UserAgent; userAgentAppId?: string | undefined | import("@smithy/types").Provider; retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2; endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider) & (string | import("@smithy/types").Provider | import("@smithy/types").Endpoint | import("@smithy/types").Provider | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider)) | undefined; endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: { logger?: import("@smithy/types").Logger; }) => import("@smithy/types").EndpointV2; tls?: boolean; serviceConfiguredEndpoint?: never; authSchemePreference?: string[] | import("@smithy/types").Provider; httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").LocationHttpAuthSchemeProvider; credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider; signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise); signingEscapePath?: boolean; systemClockOffset?: number; signingRegion?: string; signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner; };