import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { DLMServiceException as __BaseException } from "./DLMServiceException"; export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; Message?: string | undefined; Code?: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class InvalidRequestException extends __BaseException { readonly name: "InvalidRequestException"; readonly $fault: "client"; Message?: string | undefined; Code?: string | undefined; RequiredParameters?: string[] | undefined; MutuallyExclusiveParameters?: string[] | undefined; constructor(opts: __ExceptionOptionType); } export declare class LimitExceededException extends __BaseException { readonly name: "LimitExceededException"; readonly $fault: "client"; Message?: string | undefined; Code?: string | undefined; ResourceType?: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; Message?: string | undefined; Code?: string | undefined; ResourceType?: string | undefined; ResourceIds?: string[] | undefined; constructor(opts: __ExceptionOptionType); }