import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Confirmation that a speech history item was deleted. */ export type SpeechHistoryDeletionStatus = { /** * The ID of the deleted history item. */ id: string; /** * The object type of the deleted item. */ object: string; /** * Always true when deletion succeeds. */ deleted: true; }; /** @internal */ export declare const SpeechHistoryDeletionStatus$inboundSchema: z.ZodType; /** @internal */ export type SpeechHistoryDeletionStatus$Outbound = { id: string; object: string; deleted: true; }; /** @internal */ export declare const SpeechHistoryDeletionStatus$outboundSchema: z.ZodType; export declare function speechHistoryDeletionStatusToJSON(speechHistoryDeletionStatus: SpeechHistoryDeletionStatus): string; export declare function speechHistoryDeletionStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=speechhistorydeletionstatus.d.ts.map