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

This exception is thrown when an error occurs in the DataSync * service.

* @public */ export declare class InternalException extends __BaseException { readonly name: "InternalException"; readonly $fault: "server"; errorCode?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

This exception is thrown when the client submits a malformed request.

* @public */ export declare class InvalidRequestException extends __BaseException { readonly name: "InvalidRequestException"; readonly $fault: "client"; errorCode?: string | undefined; datasyncErrorCode?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }