import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TransferServiceException as __BaseException } from "./TransferServiceException"; export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class InternalServiceError extends __BaseException { readonly name: "InternalServiceError"; readonly $fault: "server"; Message: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class InvalidRequestException extends __BaseException { readonly name: "InvalidRequestException"; readonly $fault: "client"; Message: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ResourceExistsException extends __BaseException { readonly name: "ResourceExistsException"; readonly $fault: "client"; Message: string | undefined; Resource: string | undefined; ResourceType: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; Message: string | undefined; Resource: string | undefined; ResourceType: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ServiceUnavailableException extends __BaseException { readonly name: "ServiceUnavailableException"; readonly $fault: "server"; Message?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; RetryAfterSeconds?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class InvalidNextTokenException extends __BaseException { readonly name: "InvalidNextTokenException"; readonly $fault: "client"; Message: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; Message: string | undefined; constructor(opts: __ExceptionOptionType); }