import { BadRequestException } from "./BadRequestException"; import { InternalServerErrorException } from "./InternalServerErrorException"; import { ForbiddenException } from "./ForbiddenException"; import { NotFoundException } from "./NotFoundException"; import { TooManyRequestsException } from "./TooManyRequestsException"; import { ConflictException } from "./ConflictException"; export declare type GetJobTemplateExceptionsUnion = BadRequestException | InternalServerErrorException | ForbiddenException | NotFoundException | TooManyRequestsException | ConflictException;