import { NonVerbalEntity } from './non-verbal-entity.js'; import type { NonVerbalEntityJson } from './non-verbal-entity.js'; import { FigureImage } from './figure.js'; import type { FigureImageJson } from './figure.js'; export declare const NON_VERBAL_TYPES: ReadonlyArray; export interface NonVerbRepJson extends NonVerbalEntityJson { type?: string | null; images?: ReadonlyArray; } export declare class NonVerbRep extends NonVerbalEntity { readonly type: string | null; protected readonly _rawImages: ReadonlyArray; protected _images: ReadonlyArray | null; constructor(data?: NonVerbRepJson); rdfClass(): string; get images(): ReadonlyArray; toJSON(): NonVerbRepJson; static fromJSON(data: NonVerbRepJson): NonVerbRep; } //# sourceMappingURL=non-verb-rep.d.ts.map