import { subjectTypes } from "../json-ld/context";
export declare type Subject = keyof typeof subjectTypes;
export declare function isSubject(s: string): s is Subject;
export declare function getSubject(sub: any[], id?: string): Subject[];
