import { type VisuallyHiddenProps } from './VisuallyHidden.types'; /** * `VisuallyHidden` is a component that visually hides the content. It doesn't render any DOM node. * It is useful when you want to provide additional information to screen readers. * @example * * ```tsx * * This is a visually hidden text. * * ``` */ export declare function VisuallyHidden({ children }: VisuallyHiddenProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=VisuallyHidden.d.ts.map