import * as React from 'react';
export interface Props {
    /** The content to be hidden visually */
    children?: React.ReactNode;
}
export default function VisuallyHidden({ children }: Props): JSX.Element;
