export interface InfoPaneConstructor { root: HTMLDivElement; info: string; id: string; title?: string; width?: number; height?: number; } export default class InfoPane { constructor(opts: InfoPaneConstructor); }