import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response from deleting an extraction schema. */ export type SchemaDeleteResponse = { /** * Indicates whether the schema deletion was successful */ success: boolean; /** * A confirmation message about the deletion */ message: string; }; /** @internal */ export declare const SchemaDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type SchemaDeleteResponse$Outbound = { success: boolean; message: string; }; /** @internal */ export declare const SchemaDeleteResponse$outboundSchema: z.ZodType; export declare function schemaDeleteResponseToJSON(schemaDeleteResponse: SchemaDeleteResponse): string; export declare function schemaDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=schemadeleteresponse.d.ts.map