import { ReactNode } from 'react'; export type ScreenReaderContentProps = { children: ReactNode; }; /** #### When you're designing or implementing a UI, ask yourself if it could be used if you couldn't see the screen. For example, is being able to see an icon important for the user to understand context or functionality? If so, always add explanatory text for screen readers, wrapped inside a `` component. */ export declare function ScreenReaderContent({ children }: ScreenReaderContentProps): import("react/jsx-runtime").JSX.Element; export default ScreenReaderContent;