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