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