/** * A React context for signaling when all of the components in a Perseus * renderer is fully rendered. This means that all images and math have * finished loading/rendering. * * Currently only used by ServerItemRender to indicate when the question * renderer is fully rendered. */ import * as React from "react"; type Context = { onRendered: (isRendered: boolean) => void; }; declare const context: React.Context; export default context;