import * as React from 'react'; import { type BoxProps } from '../Box/Box'; type VisuallyHiddenProps = Pick; /** * Wrap any content or components with `` to apply styling that ensure the child content is not * visually displayed on the screen but is still present in the DOM/accessibility tree for assitive technology. * Use the `as` prop to change the rendered html tag. */ export declare const VisuallyHidden: ({ children, ...props }: VisuallyHiddenProps) => React.JSX.Element; export {}; //# sourceMappingURL=VisuallyHidden.d.ts.map