import type { DataBrowserContext } from 'pane-registry'; import type { NamedNode } from 'rdflib'; import './imagePane.css'; type ImagePane = { icon: string; name: string; label: (subject: NamedNode, context: DataBrowserContext) => string | null; render: (subject: NamedNode, context: DataBrowserContext) => HTMLDivElement; }; export declare const imagePane: ImagePane; export {}; //# sourceMappingURL=imagePane.d.ts.map