import type { ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface UNSTABLE_VisuallyHiddenProps extends CommonProps { /** The content that should be hidden visually. */ children: ReactNode; /** * Whether to show the content when it's focused. This can be used to implement a [skip link](https://webaim.org/techniques/skipnav/). * @default false */ showWhenFocused?: boolean; } /** * Renders a container that hides its children visually, while keeping content accessible to screen readers. */ declare const _VisuallyHidden: (props: UNSTABLE_VisuallyHiddenProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _VisuallyHidden as UNSTABLE_VisuallyHidden }; //# sourceMappingURL=visually-hidden.d.ts.map