import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { ChimeServiceException as __BaseException } from "./ChimeServiceException"; import { ErrorCode } from "./enums"; export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class BadRequestException extends __BaseException { readonly name: "BadRequestException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ForbiddenException extends __BaseException { readonly name: "ForbiddenException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class NotFoundException extends __BaseException { readonly name: "NotFoundException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class ServiceFailureException extends __BaseException { readonly name: "ServiceFailureException"; readonly $fault: "server"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ServiceUnavailableException extends __BaseException { readonly name: "ServiceUnavailableException"; readonly $fault: "server"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ThrottledClientException extends __BaseException { readonly name: "ThrottledClientException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class UnauthorizedClientException extends __BaseException { readonly name: "UnauthorizedClientException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class ResourceLimitExceededException extends __BaseException { readonly name: "ResourceLimitExceededException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class UnprocessableEntityException extends __BaseException { readonly name: "UnprocessableEntityException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); }