import { Component } from 'react'; import type { PresentationContentProps } from './props'; /** --- category: utilities/a11y --- @module PresentationContent **/ declare class PresentationContent extends Component { static allowedProps: readonly (keyof { as: import("@instructure/shared-types").AsElementType; children?: React.ReactNode; elementRef?: (element: Element | null) => void; })[]; 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 PresentationContent; export { PresentationContent }; //# sourceMappingURL=index.d.ts.map