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