import type { Codec } from './codec';
export declare const proResProfileOptions: readonly ["4444-xq", "4444", "hq", "standard", "light", "proxy"];
export type ProResProfile = (typeof proResProfileOptions)[number];
export declare const validateSelectedCodecAndProResCombination: ({ codec, proResProfile, }: {
    codec: Codec;
    proResProfile: ProResProfile | undefined;
}) => void;
