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