import { HTMLAttributes } from 'react';
export interface VisuallyHiddenProps extends HTMLAttributes {
children: React.ReactNode;
}
/**
* The `` component renders content invisible and removes it from document flow, while keeping it accessible to screen readers, document parsing, and similar technology.
*/
declare const VisuallyHidden: import("react").ForwardRefExoticComponent>;
export default VisuallyHidden;