/**
 * Delete a Org Snapshot record.
 */
declare class OrgSnapshotDeleteCommand {
    private logger;
    private orgSnapshotIdOrName;
    constructor();
    execute(context: any): Promise<import("./orgSnapshotApi").OrgSnapshot>;
    /**
     * returns a human readable message for a cli output
     *
     * @param result - the data representing the Org Snapshot
     * @returns {string}
     */
    getHumanSuccessMessage(result: any): string;
}
export = OrgSnapshotDeleteCommand;
