interface UseVerifyOverContentArgs { orientation?: 'horizontal' | 'vertical' } interface UseVerifyOverContentResponse { ref: React.Ref; hasOverContent: boolean; } export default function useVerifyOverContent(args: UseVerifyOverContentArgs): UseVerifyOverContentResponse