import type { DataTestId } from '../../types/data-props.js'; import type { StylingProps } from '../../types/styling-props.js'; import type { WithChildren } from '../../types/with-children.js'; /** * Props for the VisuallyHidden component. * @internal */ export type VisuallyHiddenProps = WithChildren & DataTestId & StylingProps; /** * Element with styles that visually hides the contents. * @internal */ export declare const VisuallyHidden: (props: WithChildren & DataTestId & StylingProps & import("react").RefAttributes) => import("react").ReactElement | null;