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