import React from 'react'; import type { AsElementType, OtherHTMLAttributes } from '@instructure/shared-types'; type PresentationContentOwnProps = { /** * the element type to render as */ as: AsElementType; children?: React.ReactNode; /** * provides a reference to the underlying html root element */ elementRef?: (element: Element | null) => void; }; type PropKeys = keyof PresentationContentOwnProps; type AllowedPropKeys = Readonly; type PresentationContentProps = PresentationContentOwnProps & OtherHTMLAttributes; declare const allowedProps: AllowedPropKeys; export type { PresentationContentProps }; export { allowedProps }; //# sourceMappingURL=props.d.ts.map