import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { LegacyChatContentVideoInput, LegacyChatContentVideoInput$Outbound } from "./legacychatcontentvideoinput.js"; /** * Video input content part (legacy format - deprecated) * * @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible. */ export type LegacyChatContentVideo = { type: "input_video"; /** * Video input object */ videoUrl: LegacyChatContentVideoInput; }; /** @internal */ export declare const LegacyChatContentVideo$inboundSchema: z.ZodType; /** @internal */ export type LegacyChatContentVideo$Outbound = { type: "input_video"; video_url: LegacyChatContentVideoInput$Outbound; }; /** @internal */ export declare const LegacyChatContentVideo$outboundSchema: z.ZodType; export declare function legacyChatContentVideoToJSON(legacyChatContentVideo: LegacyChatContentVideo): string; export declare function legacyChatContentVideoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=legacychatcontentvideo.d.ts.map