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