import React from 'react';
type UseTableStickyRightColumnsParamsType = {
    ref: React.RefObject<HTMLDivElement>;
    disabled?: boolean;
};
type UseTableStickyRightColumnsReturnType = object;
export declare const useTableStickyRightColumns: ({ ref, disabled, }: UseTableStickyRightColumnsParamsType) => UseTableStickyRightColumnsReturnType;
export {};
