import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectClient"; import { SearchAgentStatusesResponse } from "../models/models_2"; import { SearchAgentStatusesRequest } from "../models/models_3"; export { __MetadataBearer }; export { $Command }; export interface SearchAgentStatusesCommandInput extends SearchAgentStatusesRequest {} export interface SearchAgentStatusesCommandOutput extends SearchAgentStatusesResponse, __MetadataBearer {} declare const SearchAgentStatusesCommand_base: { new ( input: SearchAgentStatusesCommandInput ): import("@smithy/smithy-client").CommandImpl< SearchAgentStatusesCommandInput, SearchAgentStatusesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: SearchAgentStatusesCommandInput ): import("@smithy/smithy-client").CommandImpl< SearchAgentStatusesCommandInput, SearchAgentStatusesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class SearchAgentStatusesCommand extends SearchAgentStatusesCommand_base { protected static __types: { api: { input: SearchAgentStatusesRequest; output: SearchAgentStatusesResponse; }; sdk: { input: SearchAgentStatusesCommandInput; output: SearchAgentStatusesCommandOutput; }; }; }