import { ServiceException } from "./ServiceException"; import { InvalidInputException } from "./InvalidInputException"; import { NotFoundException } from "./NotFoundException"; import { OperationFailureException } from "./OperationFailureException"; import { AccessDeniedException } from "./AccessDeniedException"; import { AccountSetupInProgressException } from "./AccountSetupInProgressException"; import { UnauthenticatedException } from "./UnauthenticatedException"; export declare type GetLoadBalancerTlsCertificatesExceptionsUnion = ServiceException | InvalidInputException | NotFoundException | OperationFailureException | AccessDeniedException | AccountSetupInProgressException | UnauthenticatedException;