import * as z from "zod/v4-mini"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const ContainerDecision: { readonly Directplay: "directplay"; readonly Copy: "copy"; readonly Transcode: "transcode"; }; export type ContainerDecision = OpenEnum; export type TranscodeInfo = { containerDecision?: ContainerDecision | undefined; sourceContainer?: string | undefined; streamContainer?: string | undefined; hwRequested?: boolean | undefined; hwDecoding?: string | undefined; hwEncoding?: string | undefined; /** * Transcode speed multiplier */ speed?: number | undefined; throttled?: boolean | undefined; reasons?: Array | undefined; }; /** @internal */ export declare const ContainerDecision$inboundSchema: z.ZodMiniType; /** @internal */ export declare const TranscodeInfo$inboundSchema: z.ZodMiniType; export declare function transcodeInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transcode-info.d.ts.map