'use client';

import { type ReactNode } from 'react';

/** Valor devolvido por {@link useListingMobileScrollHint} (hint opcional sob a tabela). */
export type ListingMobileScrollHint = ReactNode | undefined;

/**
 * Hint de scroll horizontal para tabelas largas.
 * Mantido como no-op: o scroll da tabela é descoberta natural;
 * o texto gerava ruído visual nas listagens.
 */
export function useListingMobileScrollHint(_message?: ReactNode): ListingMobileScrollHint {
    return undefined;
}
