import { NotFoundException } from "./NotFoundException"; import { TooManyRequestsException } from "./TooManyRequestsException"; import { BadRequestException } from "./BadRequestException"; export declare type GetApiMappingExceptionsUnion = NotFoundException | TooManyRequestsException | BadRequestException;