import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PreviewErrorDto = { /** * Short error title */ title: string; /** * Detailed error message */ message: string; /** * Actionable hint for the user */ hint: string; }; /** @internal */ export declare const PreviewErrorDto$inboundSchema: z.ZodType; export declare function previewErrorDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=previewerrordto.d.ts.map