export const StorageOperationErrorName: "StorageOperationFailed"; export class StorageOperationFailed extends Server.Failure { get reason(): string; get name(): "StorageOperationFailed"; } export const RecordKeyConflictName: "RecordKeyConflict"; export class RecordKeyConflict extends Server.Failure { get reason(): string; get name(): "RecordKeyConflict"; } export const RecordNotFoundErrorName: "RecordNotFound"; export class RecordNotFound extends Server.Failure { get reason(): string; get name(): "RecordNotFound"; } export const ServiceUnavailableName: "ServiceUnavailable"; export class ServiceUnavailable extends Server.Failure { get reason(): string; get name(): "ServiceUnavailable"; } import * as Server from '@ucanto/server'; //# sourceMappingURL=errors.d.ts.map