/** * Custom hook for managing announcement text for screen readers * Provides functionality to set announcement text and automatically clear it after a delay */ export declare const useAnnounceText: () => { announceText: string; announce: (text: string, clearDelay?: number) => void; clearAnnouncement: () => void; };