import React from 'react'; import { FlintVisuallyHidden as FlintVisuallyHiddenElement } from '@getufy/flint-ui/visually-hidden/flint-visually-hidden'; /** * Makes content accessible to assistive devices (screen readers) without displaying it visually on screen. * * @slot (default) - The content to be visually hidden. */ export interface FlintVisuallyHiddenProps extends React.HTMLAttributes { /** When true, disables the focus-reveal behaviour. Useful for pure SR-only text (e.g. "opens in a new window") that should never become visible, even when a containing element is focused. */ notFocusable?: boolean; } export declare const FlintVisuallyHidden: React.ForwardRefExoticComponent>;