import { Component } from 'react'; import type { AccessibleContentProps } from './props'; /** * --- * category: utilities/a11y * --- * This component hides its children from screenreaders, they will read the text * specified by the `alt` prop instead * @module AccessibleContent */ declare class AccessibleContent extends Component { static allowedProps: readonly (keyof { alt?: string; as: import("@instructure/shared-types").AsElementType; children?: React.ReactNode; })[]; static defaultProps: { readonly as: "span"; readonly children: null; }; ref: Element | null; handleRef: (el: Element | null) => void; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default AccessibleContent; export { AccessibleContent }; //# sourceMappingURL=index.d.ts.map