import { Component } from 'react'; import type { ScreenReaderContentProps } from './props'; /** --- category: utilities/a11y --- @module ScreenReaderContent **/ declare class ScreenReaderContent extends Component { static readonly componentId = "ScreenReaderContent"; static allowedProps: readonly (keyof { as?: import("@instructure/shared-types").AsElementType; children?: import("react").ReactNode; elementRef?: (element: Element | null) => void; })[]; static defaultProps: { readonly as: "span"; readonly children: null; }; ref: Element | null; handleRef: (el: Element | null) => void; componentDidMount(): void; componentDidUpdate(): void; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default ScreenReaderContent; export { ScreenReaderContent }; //# sourceMappingURL=index.d.ts.map