import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export type TerminateStreamResponse = { success: true; terminationLogId: string; message: string; }; /** @internal */ export declare const TerminateStreamResponse$inboundSchema: z.ZodMiniType; export declare function terminateStreamResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=terminate-stream-response.d.ts.map