import { HTMLAttributes, PropsWithChildren, Ref } from 'react';
export type VisuallyHiddenProps = PropsWithChildren> & {
/**
* Change the default rendered element for the one passed as a child, merging their props and behavior.
*/
asChild?: boolean;
ref?: Ref;
};
export declare const VisuallyHidden: {
({ asChild, ref, ...props }: VisuallyHiddenProps): import("react").JSX.Element;
displayName: string;
};