interface ColumnScrollerProps { scrollToHeight: number; alignment: "center" | "top" | "bottom"; animated: boolean; onScrolled: (height: number) => void; paddingTop: number; scrollContainer: () => HTMLElement; } export declare function ColumnScroller(props: ColumnScrollerProps): import('react').FunctionComponentElement>>; export {};