import { Primitive } from "@loke/ui/primitive"; import React from "react"; declare const VISUALLY_HIDDEN_STYLES: Readonly<{ border: 0; clip: "rect(0, 0, 0, 0)"; height: 1; margin: -1; overflow: "hidden"; padding: 0; position: "absolute"; whiteSpace: "nowrap"; width: 1; wordWrap: "normal"; }>; type PrimitiveSpanProps = React.ComponentPropsWithoutRef; interface VisuallyHiddenProps extends PrimitiveSpanProps { } declare const VisuallyHidden: React.ForwardRefExoticComponent>; declare const Root: React.ForwardRefExoticComponent>; export { VisuallyHidden, Root, VISUALLY_HIDDEN_STYLES, }; export type { VisuallyHiddenProps };