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