import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteProjectInput } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteProjectCommand}. */ export interface DeleteProjectCommandInput extends DeleteProjectInput { } /** * @public * * The output of {@link DeleteProjectCommand}. */ export interface DeleteProjectCommandOutput extends __MetadataBearer { } declare const DeleteProjectCommand_base: { new (input: DeleteProjectCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteProjectCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Delete the specified project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeleteProjectCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeleteProjectCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DeleteProjectInput * ProjectName: "STRING_VALUE", // required * }; * const command = new DeleteProjectCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteProjectCommandInput - {@link DeleteProjectCommandInput} * @returns {@link DeleteProjectCommandOutput} * @see {@link DeleteProjectCommandInput} for command's `input` shape. * @see {@link DeleteProjectCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DeleteProjectCommand extends DeleteProjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteProjectInput; output: {}; }; sdk: { input: DeleteProjectCommandInput; output: DeleteProjectCommandOutput; }; }; }