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