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