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 LegacyChatContentVideoInputProcessing: { 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 LegacyChatContentVideoInputProcessing = OpenEnum; /** * Video input object */ export type LegacyChatContentVideoInput = { /** * Video processing mode. `agentic` enables agentic video processing and `static` forces fixed-rate frame sampling on providers that support it (currently Google Gemini). */ processing?: LegacyChatContentVideoInputProcessing | undefined; /** * URL of the video (data: URLs supported) */ url: string; }; /** @internal */ export declare const LegacyChatContentVideoInputProcessing$inboundSchema: z.ZodType; /** @internal */ export declare const LegacyChatContentVideoInputProcessing$outboundSchema: z.ZodType; /** @internal */ export declare const LegacyChatContentVideoInput$inboundSchema: z.ZodType; /** @internal */ export type LegacyChatContentVideoInput$Outbound = { processing?: string | undefined; url: string; }; /** @internal */ export declare const LegacyChatContentVideoInput$outboundSchema: z.ZodType; export declare function legacyChatContentVideoInputToJSON(legacyChatContentVideoInput: LegacyChatContentVideoInput): string; export declare function legacyChatContentVideoInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=legacychatcontentvideoinput.d.ts.map