import type { Quad } from '@rdfjs/types'; export interface PropValue { predicate: string; values: string[]; nested?: boolean; } export interface ClassInstance { classId: string; classLabel: string; label: string; props: PropValue[]; } export interface SectionsBuilderOptions { language?: string; } export declare function quadSectionsToClassInstances(quads: ReadonlyArray | null | undefined, options?: SectionsBuilderOptions): ClassInstance[]; //# sourceMappingURL=sections-builder.d.ts.map