import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { ResourceType } from "./enums"; import { ResourceConflict, ValidationExceptionField } from "./models_0"; import { VerifiedPermissionsServiceException as __BaseException } from "./VerifiedPermissionsServiceException"; export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; constructor( opts: __ExceptionOptionType ); } export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; $retryable: {}; constructor( opts: __ExceptionOptionType ); } export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; $retryable: { throttling: boolean; }; serviceCode?: string | undefined; quotaCode?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; fieldList?: ValidationExceptionField[] | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; resourceId: string | undefined; resourceType: ResourceType | undefined; constructor( opts: __ExceptionOptionType ); } export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; resources: ResourceConflict[] | undefined; constructor(opts: __ExceptionOptionType); } export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; resourceId?: string | undefined; resourceType: ResourceType | undefined; serviceCode?: string | undefined; quotaCode?: string | undefined; constructor( opts: __ExceptionOptionType ); } export declare class InvalidStateException extends __BaseException { readonly name: "InvalidStateException"; readonly $fault: "client"; constructor( opts: __ExceptionOptionType ); } export declare class TooManyTagsException extends __BaseException { readonly name: "TooManyTagsException"; readonly $fault: "client"; resourceName?: string | undefined; constructor( opts: __ExceptionOptionType ); }