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