import { type SkipLinkData } from '../../context/skip-links/types'; /** * A container element for the skip links. * * The container element is always rendered in the DOM, but is only visible when * focus is within the container. * * The label is used as the heading of the skip links container. If the provided label is a string * comprised only of only whitespace (e.g. '' or ' '), the skip link heading element will be removed. * * The links prop is only used when the feature flag is enabled. */ export declare function SkipLinksContainer({ label, testId, links, }: { label: string; testId?: string; links: Array; }): JSX.Element | null;