import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexRuntimeV2Client"; import { RecognizeTextRequest, RecognizeTextResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface RecognizeTextCommandInput extends RecognizeTextRequest {} export interface RecognizeTextCommandOutput extends RecognizeTextResponse, __MetadataBearer {} declare const RecognizeTextCommand_base: { new ( input: RecognizeTextCommandInput ): import("@smithy/smithy-client").CommandImpl< RecognizeTextCommandInput, RecognizeTextCommandOutput, LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: RecognizeTextCommandInput ): import("@smithy/smithy-client").CommandImpl< RecognizeTextCommandInput, RecognizeTextCommandOutput, LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class RecognizeTextCommand extends RecognizeTextCommand_base { protected static __types: { api: { input: RecognizeTextRequest; output: RecognizeTextResponse; }; sdk: { input: RecognizeTextCommandInput; output: RecognizeTextCommandOutput; }; }; }