/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * @internal */ export declare class FluidServiceError extends Error { code: FluidServiceErrorCode; constructor(message: string, errorCode: FluidServiceErrorCode); } /** * @internal */ export declare enum FluidServiceErrorCode { FeatureDisabled = 0 } //# sourceMappingURL=errorUtils.d.ts.map