import { TableColumnProps } from "../../types"; export declare function useTableSticky(columns: Array, rtl?: boolean): { isSticky: boolean; stickyLeftWidth: number; stickyRightWidth: number; getStickyClass: (key: string) => any; getStickyStyle: (key: string) => any; };