import * as z from "zod/v3"; import { OutpostError } from "./outposterror.js"; /** * List Tenants feature is not available. Requires Redis with RediSearch module. */ export type NotImplementedErrorData = { error?: string | undefined; }; /** * List Tenants feature is not available. Requires Redis with RediSearch module. */ export declare class NotImplementedError extends OutpostError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: NotImplementedErrorData; constructor(err: NotImplementedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const NotImplementedError$inboundSchema: z.ZodType; /** @internal */ export type NotImplementedError$Outbound = { error?: string | undefined; }; /** @internal */ export declare const NotImplementedError$outboundSchema: z.ZodType; //# sourceMappingURL=listtenants.d.ts.map