import type { Endpoint, EndpointV2, Provider } from "@smithy/types"; /** * This is an additional config resolver layer for clients using the default * endpoints ruleset. It modifies the input and output config types to make * the endpoint configuration property required. * * It must be placed after the `resolveEndpointConfig` * resolver. This replaces the "CustomEndpoints" config resolver, which was used * prior to default endpoint rulesets. * * @public */ export interface EndpointRequiredInputConfig { endpoint: string | Endpoint | Provider | EndpointV2 | Provider; } /** * @internal */ interface PreviouslyResolved { endpoint?: Provider; } /** * @internal */ export interface EndpointRequiredResolvedConfig { endpoint: Provider; } /** * @internal */ export declare const resolveEndpointRequiredConfig: (input: T & EndpointRequiredInputConfig & PreviouslyResolved) => T & EndpointRequiredResolvedConfig; export {};