import { default as React } from 'react'; type Props = { itemCount: number; hasMore: boolean; onLoadMore: (() => Promise) | undefined; itemsLoadedLabel?: string; endOfListLabel?: string; debounceMs?: number; }; export declare const LiveAnnouncer: React.FC; export {};