import type { JSX } from 'react'; import * as React from 'react'; type VisuallyHiddenProps = React.HTMLAttributes & { as?: keyof JSX.IntrinsicElements; ref?: React.Ref; }; declare function VisuallyHidden({ as, style, children, ref, ...props }: VisuallyHiddenProps): import("react/jsx-runtime").JSX.Element; export { VisuallyHidden };