import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved, } from "@aws-sdk/core"; import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider, } from "@smithy/types"; import { EvidentlyClientResolvedConfig } from "../EvidentlyClient"; export interface EvidentlyHttpAuthSchemeParameters extends HttpAuthSchemeParameters { region?: string; } export interface EvidentlyHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider< EvidentlyClientResolvedConfig, HandlerExecutionContext, EvidentlyHttpAuthSchemeParameters, object > {} export declare const defaultEvidentlyHttpAuthSchemeParametersProvider: ( config: EvidentlyClientResolvedConfig, context: HandlerExecutionContext, input: object ) => Promise; export interface EvidentlyHttpAuthSchemeProvider extends HttpAuthSchemeProvider {} export declare const defaultEvidentlyHttpAuthSchemeProvider: EvidentlyHttpAuthSchemeProvider; export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig { authSchemePreference?: string[] | Provider; httpAuthSchemes?: HttpAuthScheme[]; httpAuthSchemeProvider?: EvidentlyHttpAuthSchemeProvider; } export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig { readonly authSchemePreference: Provider; readonly httpAuthSchemes: HttpAuthScheme[]; readonly httpAuthSchemeProvider: EvidentlyHttpAuthSchemeProvider; } export declare const resolveHttpAuthSchemeConfig: ( config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved ) => T & HttpAuthSchemeResolvedConfig;