import type { MediaParserVideoTrack } from '@remotion/media-parser'; import type { ConvertMediaVideoCodec } from './get-available-video-codecs'; import type { ResizeOperation } from './resizing/mode'; export declare const canReencodeVideoTrack: ({ videoCodec, track, resizeOperation, rotate, }: { videoCodec: ConvertMediaVideoCodec; track: MediaParserVideoTrack; resizeOperation: ResizeOperation | null; rotate: number | null; }) => Promise;