import React, { FC } from 'react';
export interface VisuallyHiddenProps {
    /** Hidden content. */
    children: React.ReactNode;
}
/**
 * Component to wrap components to make them visually hidden. These components still will be available for assistive technologies.
 */
export declare const VisuallyHidden: FC<VisuallyHiddenProps>;
