import React from 'react'; interface UseAutoSkeletonRowsProps { enabled: boolean; maxRows?: number; minRows?: number; tableBodyRef: React.RefObject; tableRootRef: React.RefObject; tableWrapperRef: React.RefObject; } export declare function useAutoSkeletonRows({ enabled, maxRows, minRows, tableBodyRef, tableRootRef, tableWrapperRef }: UseAutoSkeletonRowsProps): number; export {};