import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { ValidationExceptionField } from "./models_0"; import { PipesServiceException as __BaseException } from "./PipesServiceException"; export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; resourceId: string | undefined; resourceType: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class InternalException extends __BaseException { readonly name: "InternalException"; readonly $fault: "server"; retryAfterSeconds?: number | undefined; constructor(opts: __ExceptionOptionType); } export declare class NotFoundException extends __BaseException { readonly name: "NotFoundException"; readonly $fault: "client"; constructor(opts: __ExceptionOptionType); } export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; resourceId: string | undefined; resourceType: string | undefined; serviceCode: string | undefined; quotaCode: string | undefined; constructor(opts: __ExceptionOptionType); } export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; serviceCode?: string | undefined; quotaCode?: string | undefined; retryAfterSeconds?: number | undefined; constructor(opts: __ExceptionOptionType); } export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; fieldList?: ValidationExceptionField[] | undefined; constructor(opts: __ExceptionOptionType); }