import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteMlflowAppRequest, DeleteMlflowAppResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteMlflowAppCommand}. */ export interface DeleteMlflowAppCommandInput extends DeleteMlflowAppRequest { } /** * @public * * The output of {@link DeleteMlflowAppCommand}. */ export interface DeleteMlflowAppCommandOutput extends DeleteMlflowAppResponse, __MetadataBearer { } declare const DeleteMlflowAppCommand_base: { new (input: DeleteMlflowAppCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteMlflowAppCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes an MLflow App.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeleteMlflowAppCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeleteMlflowAppCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * // import type { SageMakerClientConfig } from "@aws-sdk/client-sagemaker"; * const config = {}; // type is SageMakerClientConfig * const client = new SageMakerClient(config); * const input = { // DeleteMlflowAppRequest * Arn: "STRING_VALUE", // required * }; * const command = new DeleteMlflowAppCommand(input); * const response = await client.send(command); * // { // DeleteMlflowAppResponse * // Arn: "STRING_VALUE", * // }; * * ``` * * @param DeleteMlflowAppCommandInput - {@link DeleteMlflowAppCommandInput} * @returns {@link DeleteMlflowAppCommandOutput} * @see {@link DeleteMlflowAppCommandInput} for command's `input` shape. * @see {@link DeleteMlflowAppCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DeleteMlflowAppCommand extends DeleteMlflowAppCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteMlflowAppRequest; output: DeleteMlflowAppResponse; }; sdk: { input: DeleteMlflowAppCommandInput; output: DeleteMlflowAppCommandOutput; }; }; }