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 SourceVideoDetails = { bitrate?: number | undefined; framerate?: string | undefined; dynamicRange?: string | undefined; aspectRatio?: number | undefined; profile?: string | undefined; level?: string | undefined; colorSpace?: string | undefined; colorDepth?: number | undefined; }; /** @internal */ export declare const SourceVideoDetails$inboundSchema: z.ZodMiniType; export declare function sourceVideoDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=source-video-details.d.ts.map