import React, { type ReactNode } from 'react'; /** * Provider for skip links. Should be rendered at the top level of the application. * * - Provides the context to register/unregister skip links * - Renders the skip links container */ export declare function SkipLinksProvider({ children, label, testId, }: { children: ReactNode; label: string; testId?: string; }): React.JSX.Element;