import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException"; /** *

Indicates that an internal error occurred.

* @public */ export declare class CloudHsmInternalException extends __BaseException { readonly name: "CloudHsmInternalException"; readonly $fault: "server"; /** *

Indicates if the action can be retried.

* @public */ retryable?: boolean | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Indicates that an exception occurred in the AWS CloudHSM service.

* @public */ export declare class CloudHsmServiceException extends __BaseException { readonly name: "CloudHsmServiceException"; readonly $fault: "client"; /** *

Indicates if the action can be retried.

* @public */ retryable?: boolean | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Indicates that one or more of the request parameters are not valid.

* @public */ export declare class InvalidRequestException extends __BaseException { readonly name: "InvalidRequestException"; readonly $fault: "client"; /** *

Indicates if the action can be retried.

* @public */ retryable?: boolean | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }