/** * A wrapper around info-tip/info-tip.jsx that can be rendered on the * server without causing a checksum mismatch on the client. * (RCSS generates classnames with a randomSuffix, which ensures that any * two sets of generated classnames will not match.) */ import * as React from "react"; import InfoTipBase from "./info-tip-base"; import type { PropsFor } from "@khanacademy/wonder-blocks-core"; type Props = PropsFor; type State = { didMount: boolean; }; declare class InfoTip extends React.Component { state: State; componentDidMount(): void; render(): React.ReactNode; } export default InfoTip;