import { ServerException } from "./ServerException"; import { ClientException } from "./ClientException"; import { InvalidParameterException } from "./InvalidParameterException"; import { ClusterNotFoundException } from "./ClusterNotFoundException"; import { ServiceNotFoundException } from "./ServiceNotFoundException"; export declare type DeleteServiceExceptionsUnion = ServerException | ClientException | InvalidParameterException | ClusterNotFoundException | ServiceNotFoundException;