
import { Command as $Command } from "@aws-sdk/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
import { InvokeAsyncRequest, InvokeAsyncResponse } from "../models/models_0";
declare type InvokeAsyncCommandInputType = Pick<InvokeAsyncRequest, Exclude<keyof InvokeAsyncRequest, "InvokeArgs">> & {
    
    InvokeArgs: InvokeAsyncRequest["InvokeArgs"] | string | Uint8Array | Buffer;
};

export interface InvokeAsyncCommandInput extends InvokeAsyncCommandInputType {
}
export interface InvokeAsyncCommandOutput extends InvokeAsyncResponse, __MetadataBearer {
}

export declare class InvokeAsyncCommand extends $Command<InvokeAsyncCommandInput, InvokeAsyncCommandOutput, LambdaClientResolvedConfig> {
    readonly input: InvokeAsyncCommandInput;
    constructor(input: InvokeAsyncCommandInput);
    
    resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LambdaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InvokeAsyncCommandInput, InvokeAsyncCommandOutput>;
    private serialize;
    private deserialize;
}
export {};
