import React from 'react';
type UseTableShadowParamsType = {
    ref: React.RefObject<HTMLDivElement>;
    headBoxShadow?: string;
    leftBoxShadow?: string;
    rightBoxShadow?: string;
    disabled?: boolean;
};
type UseTableShadowReturnType = object;
export declare const useTableShadow: ({ ref, headBoxShadow, leftBoxShadow, rightBoxShadow, disabled, }: UseTableShadowParamsType) => UseTableShadowReturnType;
export {};
