/**
 * @file index.tsx
 *
 * @fileoverview Skip to main content navigation.
 */
import * as React from 'react';
export interface HiddenVisuallyProps {
    /**
     * The contents for what is visually hidden.
     */
    children: React.ReactNode;
}
/**
 * Provides text for screen readers that is visually hidden.
 * It is the logical opposite of the aria-hidden attribute.
 */
export declare const HiddenVisually: ({ children, ...props }: HiddenVisuallyProps) => JSX.Element;
export default HiddenVisually;
