/** * Copyright (c) 2026 Microblink Ltd. All rights reserved. */ import { ExtractionArea } from "../core/VideoFrameProcessor"; /** * Computes the visible portion of the video (in the video's natural coordinate space) * when rendered with object-fit: cover. * * @param containerWidth - The width of the container. * @param containerHeight - The height of the container. * @param videoWidth - The width of the video. * @param videoHeight - The height of the video. * @returns The visible portion of the video. */ export declare function getVisibleVideoArea(containerWidth: number, containerHeight: number, videoWidth: number, videoHeight: number): ExtractionArea; //# sourceMappingURL=getVisibleVideoArea.d.ts.map