import type { AwsHandlerExecutionContext, AwsSdkFeatures } from "@aws-sdk/types";
/**
 * Indicates to the request context that a given feature is active.
 * @internal
 *
 * @param context - handler execution context.
 * @param feature - readable name of feature.
 * @param value - encoding value of feature. This is required because the
 * specification asks the SDK not to include a runtime lookup of all
 * the feature identifiers.
 */
export declare function setFeature<F extends keyof AwsSdkFeatures>(context: AwsHandlerExecutionContext, feature: F, value: AwsSdkFeatures[F]): void;
