import type { SectionScrollController } from "../managers/SectionScrollController"; export interface HorizontalScrollbarProps { mainBodyRef: HTMLDivElement; mainBodyWidth: number; pinnedLeftWidth: number; pinnedRightWidth: number; pinnedLeftContentWidth: number; pinnedRightContentWidth: number; tableBodyContainerRef: HTMLDivElement; editColumns: boolean; sectionScrollController?: SectionScrollController | null; } export declare const createHorizontalScrollbar: (props: HorizontalScrollbarProps) => HTMLElement | null; /** * Apply width props to an existing scrollbar from {@link createHorizontalScrollbar}. * Used when layout is recreated without tearing down the DOM node (e.g. pinned resize). */ export declare const syncHorizontalScrollbarLayout: (container: HTMLElement, props: HorizontalScrollbarProps) => void; export declare const cleanupHorizontalScrollbar: (container: HTMLElement, sectionScrollController?: SectionScrollController | null) => void;