import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * Code */ export declare const OlapErrorCode: { readonly InvalidInput: "INVALID_INPUT"; readonly NotFound: "NOT_FOUND"; readonly Unknown: "UNKNOWN"; }; /** * Code */ export type OlapErrorCode = ClosedEnum; /** @internal */ export declare const OlapErrorCode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const OlapErrorCode$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OlapErrorCode$ { /** @deprecated use `OlapErrorCode$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly InvalidInput: "INVALID_INPUT"; readonly NotFound: "NOT_FOUND"; readonly Unknown: "UNKNOWN"; }>; /** @deprecated use `OlapErrorCode$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly InvalidInput: "INVALID_INPUT"; readonly NotFound: "NOT_FOUND"; readonly Unknown: "UNKNOWN"; }>; } //# sourceMappingURL=olaperror.d.ts.map