import type { ColumnKey } from './types'; export declare const getStickyClasses: ({ columnKey, sticky, scrolled, lastStickyColumn, }: { columnKey: ColumnKey; sticky: boolean; scrolled: boolean; lastStickyColumn?: ColumnKey; }) => string; export declare const getStickyOffset: (offset?: number) => string;