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 SubtitleInfo = { decision?: string | undefined; codec?: string | undefined; language?: string | undefined; forced?: boolean | undefined; }; /** @internal */ export declare const SubtitleInfo$inboundSchema: z.ZodMiniType; export declare function subtitleInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subtitle-info.d.ts.map