type Politeness = 'polite' | 'assertive' | 'off'; interface Props { children?: import('svelte').Snippet; message?: string; politeness?: Politeness; atomic?: boolean; relevant?: 'additions' | 'removals' | 'text' | 'all' | 'additions text'; role?: 'status' | 'alert' | 'log' | 'marquee' | 'timer' | undefined; visuallyHidden?: boolean; class?: string; 'aria-label'?: string; } declare const LiveRegion: import("svelte").Component; type LiveRegion = ReturnType; export default LiveRegion;