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