import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../EvidentlyClient"; import { StopExperimentRequest, StopExperimentResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface StopExperimentCommandInput extends StopExperimentRequest {} export interface StopExperimentCommandOutput extends StopExperimentResponse, __MetadataBearer {} declare const StopExperimentCommand_base: { new ( input: StopExperimentCommandInput ): import("@smithy/smithy-client").CommandImpl< StopExperimentCommandInput, StopExperimentCommandOutput, EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: StopExperimentCommandInput ): import("@smithy/smithy-client").CommandImpl< StopExperimentCommandInput, StopExperimentCommandOutput, EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class StopExperimentCommand extends StopExperimentCommand_base { protected static __types: { api: { input: StopExperimentRequest; output: StopExperimentResponse; }; sdk: { input: StopExperimentCommandInput; output: StopExperimentCommandOutput; }; }; }