import { ComponentPropsWithoutRef, ReactNode } from 'react'; export interface VisuallyHiddenProps extends ComponentPropsWithoutRef<'span'> { children?: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "govuk-visually-hidden"; /** * accordion__section No equivalent GDS/HODS component Invisible text that can be read by software such as screen-readers. In the example below, note that there is a visually-hidden prefix of "Error:", which will be picked up by screen-readers. */ export declare const VisuallyHidden: ({ children, classBlock, classModifiers, className, ...attrs }: VisuallyHiddenProps) => import("react/jsx-runtime").JSX.Element;