import React from 'react';
type UseDataTableShadowParamsType = {
    ref: React.RefObject<HTMLDivElement>;
    headBoxShadow?: string;
    leftBoxShadow?: string;
    rightBoxShadow?: string;
};
type UseDataTableShadowReturnType = object;
export declare const useDataTableShadow: ({ ref, headBoxShadow, leftBoxShadow, rightBoxShadow, }: UseDataTableShadowParamsType) => UseDataTableShadowReturnType;
export {};
