import React from 'react'; interface SkipLinkProps { href: string; children: React.ReactNode; onPress?: () => void; } /** * Skip link for keyboard navigation - allows users to skip to main content */ export declare const SkipLink: React.FC; interface LandmarkProps { role: 'main' | 'navigation' | 'banner' | 'contentinfo' | 'complementary'; label?: string; children: React.ReactNode; style?: any; } /** * Semantic landmark component for page structure */ export declare const Landmark: React.FC; interface LiveRegionProps { priority?: 'polite' | 'assertive'; children: React.ReactNode; atomic?: boolean; } /** * Live region for dynamic content announcements */ export declare const LiveRegion: React.FC; interface ProgressIndicatorProps { value: number; max?: number; label?: string; description?: string; showPercentage?: boolean; } /** * Accessible progress indicator */ export declare const ProgressIndicator: React.FC; interface ErrorBoundaryFallbackProps { error: Error; resetError: () => void; } /** * Accessible error boundary fallback */ export declare const ErrorBoundaryFallback: React.FC; export {};