import type { ReactTableHooks } from '../types/index.js';
/**
 * The `useAnnounceEmptyCells` plugin hook adds screen reader announcements for empty cells.
 *
 * **Note:** Some screen readers (depending on their configuration) automatically detect empty cells, potentially resulting in duplicate announcements of empty cells.
 */
export declare const useAnnounceEmptyCells: {
    (hooks: ReactTableHooks): void;
    pluginName: string;
};
