import { ISpecificationEntry } from "../ISpecificationEntry";
import { OWLSpecificationProvider } from "./OWLSpecificationProvider";
import { RdfStore } from "rdf-stores";
import { BaseRDFReader } from "../BaseRDFReader";
export declare class OWLSpecificationEntry extends BaseRDFReader implements ISpecificationEntry {
    uri: string;
    provider: OWLSpecificationProvider;
    constructor(uri: string, provider: OWLSpecificationProvider, n3store: RdfStore, lang: string);
    getId(): string;
    getLabel(): string;
    getTooltip(): string | undefined;
    getColor(): string | undefined;
    /**
     * Reads config:order of an entity and returns it, or undefined if not set
     **/
    getOrder(): string | undefined;
    getIcon(): string;
    getHighlightedIcon(): string | undefined;
    getParents(): string[];
}
