import { PolymorphicComponent } from './_shared'; type VisuallyHiddenProps = {}; /** * `VisuallyHidden` is used hide content from the visual client, but keep it readable for screen readers. * * @example * ```jsx * * Hidding * * ``` */ export declare const VisuallyHidden: PolymorphicComponent< 'div', VisuallyHiddenProps >;