import * as z from "zod/v4"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Video processing mode. `agentic` enables agentic video processing and `static` forces fixed-rate frame sampling on providers that support it (currently Google Gemini). */ export declare const ChatContentVideoInputProcessing: { readonly Agentic: "agentic"; readonly Static: "static"; }; /** * Video processing mode. `agentic` enables agentic video processing and `static` forces fixed-rate frame sampling on providers that support it (currently Google Gemini). */ export type ChatContentVideoInputProcessing = OpenEnum; /** * Video input object */ export type ChatContentVideoInput = { /** * Video processing mode. `agentic` enables agentic video processing and `static` forces fixed-rate frame sampling on providers that support it (currently Google Gemini). */ processing?: ChatContentVideoInputProcessing | undefined; /** * URL of the video (data: URLs supported) */ url: string; }; /** @internal */ export declare const ChatContentVideoInputProcessing$inboundSchema: z.ZodType; /** @internal */ export declare const ChatContentVideoInputProcessing$outboundSchema: z.ZodType; /** @internal */ export declare const ChatContentVideoInput$inboundSchema: z.ZodType; /** @internal */ export type ChatContentVideoInput$Outbound = { processing?: string | undefined; url: string; }; /** @internal */ export declare const ChatContentVideoInput$outboundSchema: z.ZodType; export declare function chatContentVideoInputToJSON(chatContentVideoInput: ChatContentVideoInput): string; export declare function chatContentVideoInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chatcontentvideoinput.d.ts.map