import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeClient"; import { DeleteAccountRequest, DeleteAccountResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface DeleteAccountCommandInput extends DeleteAccountRequest {} export interface DeleteAccountCommandOutput extends DeleteAccountResponse, __MetadataBearer {} declare const DeleteAccountCommand_base: { new ( input: DeleteAccountCommandInput ): import("@smithy/core/client").CommandImpl< DeleteAccountCommandInput, DeleteAccountCommandOutput, ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: DeleteAccountCommandInput ): import("@smithy/core/client").CommandImpl< DeleteAccountCommandInput, DeleteAccountCommandOutput, ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class DeleteAccountCommand extends DeleteAccountCommand_base { protected static __types: { api: { input: DeleteAccountRequest; output: {}; }; sdk: { input: DeleteAccountCommandInput; output: DeleteAccountCommandOutput; }; }; }