import { type HTMLAttributes, type ReactNode } from 'react';
type VisuallyHiddenProps = HTMLAttributes & {
children: ReactNode;
};
declare const VisuallyHidden: ({ children, style, ...props }: VisuallyHiddenProps) => import("react/jsx-runtime").JSX.Element;
export { VisuallyHidden };
export type { VisuallyHiddenProps };