import { ComponentPropsWithoutRef } from 'react'; /** * Screen reader only component for providing accessible content that is visually hidden. * * Features: * - Visually hidden content that remains accessible to screen readers * - Preserves all standard span element functionality and attributes * - Maintains proper semantic structure * - Essential for accessibility compliance * * @example *
* * One hundred dollars *
*/ export declare const SrOnly: (props: ComponentPropsWithoutRef<"span">) => import("react/jsx-runtime").JSX.Element;