import { type ComponentProps, type ElementType, type PropsWithChildren } from 'react'; export declare const visuallyHiddenTextClassName: string; type Props = PropsWithChildren<{ as?: T; }> & ComponentProps; declare const ActualVisuallyHiddenText: ({ as: Component, className, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export declare const VisuallyHiddenText: typeof ActualVisuallyHiddenText; export {};