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 * - Supports custom styling and className overrides * - Maintains proper semantic structure * - Essential for accessibility compliance * - Works with all screen reader technologies * - Supports all standard HTML span attributes * * @example *
* * One hundred dollars *
*/ export declare const SrOnly: (props: ComponentPropsWithoutRef<"span">) => import("react/jsx-runtime").JSX.Element;