import React from "react"; import type VibeComponentProps from "../../types/VibeComponentProps"; export interface HiddenTextProps extends VibeComponentProps { /** * The text content that is hidden but available for assistive technologies. */ text: string; } declare const HiddenText: React.ForwardRefExoticComponent>; export default HiddenText;