export interface ScrollRevealBounds { containerLeft: number; containerRight: number; targetLeft: number; targetRight: number; currentScrollLeft: number; padding?: number; } /** * Returns the minimal horizontal scrollLeft needed to reveal a target, or null * when the target is already fully visible inside the container. */ export declare function getScrollLeftToRevealTarget({ containerLeft, containerRight, targetLeft, targetRight, currentScrollLeft, padding, }: ScrollRevealBounds): number | null; //# sourceMappingURL=viewerTabScroll.d.ts.map