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