import * as N3 from 'n3'; export default abstract class Path { value: string | null | Path | Path[]; subject: N3.Term | undefined; object: N3.Term | undefined; constructor(value: string | Path | Path[] | null, subject?: N3.Term, object?: N3.Term); abstract getPathString(): string; } //# sourceMappingURL=Path.d.ts.map