import React from 'react'; import { TableProps } from '../interfaces'; interface SortLiveAnnouncementProps { sortingColumns: ReadonlyArray>; columnDefinitions: ReadonlyArray>; ariaLabels: TableProps.AriaLabels | undefined; containerRef: React.RefObject; } /** * Announces multi-column sort changes politely. The announcement is (re)built in an effect after each * sort change, when the table DOM is present, so it can read the rendered header text. It is not * announced on the initial render — only on subsequent sort changes. */ export declare function SortLiveAnnouncement({ sortingColumns, columnDefinitions, ariaLabels, containerRef }: SortLiveAnnouncementProps): JSX.Element | null; export {};