import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectClient"; import { StopContactRequest, StopContactResponse } from "../models/models_3"; export { __MetadataBearer }; export { $Command }; export interface StopContactCommandInput extends StopContactRequest {} export interface StopContactCommandOutput extends StopContactResponse, __MetadataBearer {} declare const StopContactCommand_base: { new ( input: StopContactCommandInput ): import("@smithy/smithy-client").CommandImpl< StopContactCommandInput, StopContactCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: StopContactCommandInput ): import("@smithy/smithy-client").CommandImpl< StopContactCommandInput, StopContactCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class StopContactCommand extends StopContactCommand_base { protected static __types: { api: { input: StopContactRequest; output: {}; }; sdk: { input: StopContactCommandInput; output: StopContactCommandOutput; }; }; }