import { VisuallyHiddenProps as ReactAriaVisuallyHiddenProps } from 'react-aria'; export type VisuallyHiddenProps = Omit & { /** specifies the element type to render, use `span` for inline content * and `div` for block content */ as?: "span" | "div"; }; /** * # VisuallyHidden * * makes content accessible to screen readers but hides it visually * * @see {@link https://nimbus-documentation.vercel.app/components/accessibility/visually-hidden} */ export declare const VisuallyHidden: { (props: VisuallyHiddenProps): import("react/jsx-runtime").JSX.Element; displayName: string; };