import type { ComponentPropsWithRef, ElementType } from 'react'; export type ScreenReaderProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Text elements to only be read by screen readers but not shown visually on screen. */ declare const ScreenReader: { ({ className, tag: Tag, ...remainingProps }: ScreenReaderProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ScreenReader;