import { default as React } from 'react'; type VisuallyHiddenProps = React.ComponentPropsWithoutRef<'span'> & { visibleOnFocus?: boolean; asChild?: boolean; }; /** * This component is used to hide content visually, but still accessible to screen readers * */ declare const VisuallyHidden: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & { visibleOnFocus?: boolean; asChild?: boolean; } & React.RefAttributes>; export { VisuallyHidden }; export type { VisuallyHiddenProps };