interface ColumnScrollIntoViewValueArgs { readonly startCount: number; readonly centerCount: number; readonly endCount: number; readonly columnIndex: number; readonly columnPositions: Uint32Array; readonly viewport: HTMLElement; } export declare function columnScrollIntoViewValue({ startCount, centerCount, endCount, columnIndex: c, columnPositions, viewport, }: ColumnScrollIntoViewValueArgs): number | undefined; export {};