import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type ScheduleValidationErrorData = { occurrences?: { [k: string]: string; } | undefined; recur?: string | undefined; description?: string | undefined; }; export declare class ScheduleValidationError extends MoovError { occurrences?: { [k: string]: string; } | undefined; recur?: string | undefined; description?: string | undefined; /** The original data that was passed to this error instance. */ data$: ScheduleValidationErrorData; constructor(err: ScheduleValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ScheduleValidationError$inboundSchema: z.ZodType; /** @internal */ export type ScheduleValidationError$Outbound = { occurrences?: { [k: string]: string; } | undefined; recur?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const ScheduleValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=schedulevalidationerror.d.ts.map