import * as React from 'react'; export type LiveRegionPoliteness = 'polite' | 'assertive'; interface SRLiveRegionContextValue { announce: (text: string, politeness?: LiveRegionPoliteness) => void; } export declare function useSRLiveRegion(): SRLiveRegionContextValue; export declare function SRLiveRegionProvider({ children, }: { children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export {};